19 lines
503 B
YAML
Raw Normal View History

2024-07-13 12:25:09 +01:00
name: Release
on:
workflow_dispatch:
schedule:
2024-07-31 22:05:13 +01:00
- cron: "0 9 * * 0"
2024-07-13 12:25:09 +01:00
jobs:
create_release:
name: Create Release
uses: luketainton/gha-workflows/.github/workflows/create-release.yml@main
create_docker:
name: Create Docker Image
needs: create_release
2024-07-16 19:08:22 +01:00
if: ${{ needs.create_release.outputs.success == 'true' }}
2024-07-13 12:25:09 +01:00
uses: luketainton/gha-workflows/.github/workflows/build-push-attest-docker.yml@main
with:
release: ${{ needs.create_release.outputs.release_name }}