test: docker meta tags #3
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: Bake Images | |
on: | |
workflow_dispatch: | |
push: | |
branches: [feature/*] | |
paths: | |
- .github/workflows/publish2.yml | |
- docker-bake.hcl | |
- pixi.lock | |
- pixi.toml | |
- packages.yaml | |
- dockerfiles/** | |
- scripts/** | |
- assets/** | |
schedule: | |
# Weekly, at 03:00 on Monday UTC time (see https://crontab.guru) | |
- cron: "0 3 * * 1" | |
# https://docs.github.com/en/actions/using-jobs/using-concurrency | |
concurrency: | |
# only cancel in-progress jobs or runs for the current workflow - matches against branch & tags | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
foundation: | |
uses: ./.github/workflows/bake.yml | |
secrets: inherit | |
with: | |
target: foundation | |
base: | |
needs: [foundation] | |
uses: ./.github/workflows/bake.yml | |
secrets: inherit | |
with: | |
target: base |