diff --git a/.github/workflows/build-base.yml b/.github/workflows/build-base.yml index 09b25b9..6b21d87 100644 --- a/.github/workflows/build-base.yml +++ b/.github/workflows/build-base.yml @@ -44,7 +44,7 @@ jobs: uses: actions/checkout@v3 - name: Build run: | - docker buildx build --platform linux/${{ matrix.build-arch }} -f ${PHP_VERSION}/alpine/base/Dockerfile -t hyperf/hyperf:${PHP_VERSION}-alpine-v${ALPINE_VERSION}-base --build-arg ALPINE_VERSION=${ALPINE_VERSION} . + docker buildx build --platform linux/${{ matrix.build-arch }} -f ${PHP_VERSION}/alpine/base/Dockerfile -t hyperf/hyperf:${PHP_VERSION}-alpine-v${ALPINE_VERSION}-base --build-arg ALPINE_VERSION=${ALPINE_VERSION} ${PHP_VERSION}/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' }}