Set the latest swoole version as latest tag. #338
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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 | |
docker run --entrypoint php -v $PWD/tests/base:/opt/www hyperf/hyperf:${{ matrix.php-version }}-alpine-v${{ matrix.alpine-version }}-base /opt/www/openssl.php | |
- 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 | |