Deploy :edge on Schedule #108
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: 'Deploy :edge on Schedule' | ||
on: | ||
schedule: | ||
- cron: 0 0 * * 5 | ||
permissions: | ||
contents: read | ||
packages: write | ||
jobs: | ||
build-images: | ||
name: 'Build Images' | ||
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_build.yml@master | ||
with: | ||
platforms: linux/amd64,linux/arm64 | ||
scan-image: | ||
Check failure on line 18 in .github/workflows/scheduled_builds.yml GitHub Actions / Deploy :edge on ScheduleInvalid workflow file
|
||
name: 'Scan Image for Vulnerabilities' | ||
needs: build-images | ||
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_vulnerability-scan.yml@master | ||
with: | ||
cache-key: ${{ needs.build-images.outputs.build-cache-key }} | ||
publish-images: | ||
name: 'Publish Images' | ||
needs: build-images | ||
uses: docker-mailserver/docker-mailserver/.github/workflows/generic_publish.yml@master | ||
with: | ||
cache-key: ${{ needs.build-images.outputs.build-cache-key }} | ||
secrets: inherit |