Skip to content

Upgrade swow to v1.4.1 #349

Upgrade swow to v1.4.1

Upgrade swow to v1.4.1 #349

Workflow file for this run

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.1', '8.2', '8.3' ]
alpine-version: [ '3.16', '3.17', '3.18', 'edge' ]
exclude:
- php-version: '8.3'
alpine-version: '3.16'
- php-version: '8.3'
alpine-version: '3.17'
- php-version: '8.3'
alpine-version: '3.18'
- php-version: '8.2'
alpine-version: '3.16'
- php-version: '8.2'
alpine-version: '3.17'
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