Build DB/Webroot Backup Image #103
This file contains hidden or 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 DB/Webroot Backup Image | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- 'db-webroot-backup/*' | |
- '.github/workflows/build-db-webroot-backup.yml' | |
pull_request: | |
paths: | |
- 'db-webroot-backup/*' | |
- '.github/workflows/build-db-webroot-backup.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: | |
package: | |
uses: Chia-Network/actions/.github/workflows/docker-build.yaml@main | |
with: | |
alternate-latest-mode: true | |
docker-context: "./db-webroot-backup" | |
dockerfile: "./db-webroot-backup/Dockerfile" | |
image_subpath: "db-webroot-backup" |