-
-
Notifications
You must be signed in to change notification settings - Fork 203
59 lines (54 loc) · 1.61 KB
/
build-base.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
name: Build Base Image
on:
push:
workflow_dispatch:
inputs:
event:
description: 'Input your event'
required: true
default: ''
env:
DOCKERHUB_TOKEN: ${{ secrets.DOCKERHUB_ACCESSTOKEN }}
jobs:
build:
name: Build Base Image
runs-on: 'ubuntu-latest'
env:
PHP_VERSION: '${{ matrix.php-version }}'
ALPINE_VERSION: '${{ matrix.alpine-version }}'
strategy:
matrix:
php-version: [ '8.0', '8.1', '8.2' ]
alpine-version: [ '3.14', '3.15', '3.16', '3.17', '3.18', 'edge' ]
exclude:
- php-version: '8.2'
alpine-version: '3.14'
- php-version: '8.2'
alpine-version: '3.15'
- php-version: '8.2'
alpine-version: '3.16'
- php-version: '8.2'
alpine-version: '3.17'
- php-version: '8.1'
alpine-version: '3.14'
- php-version: '8.1'
alpine-version: '3.15'
- php-version: '8.0'
alpine-version: '3.17'
- php-version: '8.0'
alpine-version: '3.18'
- php-version: '8.0'
alpine-version: 'edge'
max-parallel: 12
fail-fast: false
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Build
run: |
docker-compose build alpine-base
- name: Push Images to Docker Hub
if: ${{ github.event.inputs.event == 'publish' }}
run: |
docker login --username limingxinleo -p $DOCKERHUB_TOKEN
docker push hyperf/hyperf:${{ matrix.php-version }}-alpine-v${{ matrix.alpine-version }}-base