Skip to content

Merge pull request #9 from kool-dev/dependabot/github_actions/actions… #43

Merge pull request #9 from kool-dev/dependabot/github_actions/actions…

Merge pull request #9 from kool-dev/dependabot/github_actions/actions… #43

Workflow file for this run

name: CI/CD
on: [push, pull_request, workflow_dispatch]
env:
DOCKER_BUILDKIT: 1
jobs:
build:
name: Build
runs-on: ubuntu-latest
strategy:
matrix:
version: ['8.0', '8.1', '8.2']
steps:
- name: Checkout code
uses: actions/[email protected]
- name: Build
run: |
docker build --pull -t kooldev/php:${{ matrix.version }}-nginx-swoole ${{ matrix.version }}-nginx-swoole
docker build --pull -t kooldev/php:${{ matrix.version }}-nginx-swoole-prod ${{ matrix.version }}-nginx-swoole-prod
- name: Tests
run: |
docker run kooldev/php:${{ matrix.version }}-nginx-swoole php -r "extension_loaded('swoole') or die(1);"
docker run kooldev/php:${{ matrix.version }}-nginx-swoole-prod php -r "extension_loaded('swoole') or die(1);"
- name: Login to DockerHub
uses: docker/[email protected]
if: github.ref == 'refs/heads/main' && github.repository == 'kool-dev/docker-php-swoole'
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Push to DockerHub
if: github.ref == 'refs/heads/main' && github.repository == 'kool-dev/docker-php-swoole'
run: |
docker push kooldev/php:${{ matrix.version }}-nginx-swoole
docker push kooldev/php:${{ matrix.version }}-nginx-swoole-prod
trigger-build-oci8:
name: Trigger OCI8 Build
runs-on: ubuntu-latest
needs: build
steps:
- name: Trigger build on kool-dev/docker-php-oci8
uses: benc-uk/[email protected]
if: github.ref == 'refs/heads/main' && github.repository == 'kool-dev/docker-php-swoole'
with:
workflow: CI/CD
repo: kool-dev/docker-php-oci8
token: ${{ secrets.WORKFLOW_TOKEN }}