Skip to content

Merge pull request #11 from AndreasAugustin/release-please--branches-… #2

Merge pull request #11 from AndreasAugustin/release-please--branches-…

Merge pull request #11 from AndreasAugustin/release-please--branches-… #2

Workflow file for this run

name: release
on:
push:
branches:
- main
jobs:
call_lint:
uses: ./.github/workflows/lint.yml
call_release_please:
needs:
- call_lint
permissions:
contents: write
pull-requests: write
uses: ./.github/workflows/release_please.yml
call_push_docker:
if: ${{ needs.call_release_please.outputs.release_created }}
needs:
- call_release_please
permissions:
contents: read
packages: write
uses: ./.github/workflows/push_docker.yml
with:
tag: ${{ needs.call_release_please.outputs.tag_name }}
secrets: inherit
call_release_test_docker_images:
if: ${{ needs.call_release_please.outputs.release_created }}
needs:
- call_push_docker
- call_release_please
permissions:
packages: read
uses: ./.github/workflows/release_test_docker_images.yml
with:
tag: ${{ needs.call_release_please.outputs.tag_name }}
secrets: inherit