Add wordpress init container + nginx + php container #4
Workflow file for this run
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 PHPFPM Image | ||
on: | ||
push: | ||
branches: | ||
- main | ||
paths: | ||
- 'phpfpm/*' | ||
- '.github/workflows/build-phpfpm.yml' | ||
pull_request: | ||
paths: | ||
- 'phpfpm/*' | ||
- '.github/workflows/build-phpfpm.yml' | ||
workflow_dispatch: | ||
schedule: | ||
- cron: '30 12 * * 5' | ||
concurrency: | ||
# SHA is added to the end if on `main` to let all main workflows run | ||
group: ${{ github.ref }}-${{ github.workflow }}-${{ github.event_name }}-${{ github.ref == 'refs/heads/main' && github.sha || '' }} | ||
cancel-in-progress: true | ||
jobs: | ||
build: | ||
uses: Chia-Network/actions/.github/workflows/docker-build.yaml@add-build-args | ||
Check failure on line 25 in .github/workflows/build-phpfpm.yml GitHub Actions / .github/workflows/build-phpfpm.ymlInvalid workflow file
|
||
with: | ||
docker-context: "./phpfpm" | ||
dockerfile: "./phpfpm/Dockerfile" | ||
image_subpath: "phpfpm" |