mirror of
https://github.com/docker-mailserver/docker-mailserver.git
synced 2024-01-19 02:48:50 +00:00
f8e1bb0f42
Mew re-usable workflows are introduced to handle building, testing and publishing the container image in a uniform and easy way. Now, the `scheduled_builds`, `default_on_push` and a part of the `test_merge_requests` workflow can use the same code for building, testing and publishing the container images. This is DRY. Co-authored-by: Brennan Kinney <5098581+polarathene@users.noreply.github.com>
25 lines
581 B
YAML
25 lines
581 B
YAML
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/arm/v7,linux/arm64
|
|
|
|
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
|