Skip to content

Fix/docker push (#389) #1

Fix/docker push (#389)

Fix/docker push (#389) #1

Workflow file for this run

name: release
on:
push:
branches:
- main
jobs:
call_shellcheck:
uses: ./.github/workflows/shellcheck.yml
call_lint:
uses: ./.github/workflows/lint.yml
call_test_all:
uses: ./.github/workflows/test_all.yml
secrets: inherit
call_release_please:
needs:
- call_shellcheck
- call_lint
- call_test_all
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
secrets: inherit