scheduled build and push #276
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: scheduled build and push | |
# scheduled run every day at 00:00 GMT +03:00 | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- main | |
pull_request: | |
paths: | |
- 'docker/Dockerfile.auv-base' | |
schedule: | |
- cron: "0 21 * * *" | |
concurrency: | |
group: scheduled-${{ github.workflow }}-${{ (github.event_name == 'pull_request' && github.event.pull_request.number) || github.ref }} | |
cancel-in-progress: true | |
jobs: | |
base-image: | |
uses: ./.github/workflows/build_and_push_images.yml | |
with: | |
image_type: base |