Skip to content

fix(ci): 🐛 (#387) issue with docker push (#392) #5

fix(ci): 🐛 (#387) issue with docker push (#392)

fix(ci): 🐛 (#387) issue with docker push (#392) #5

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

Check failure on line 32 in .github/workflows/release.yml

View workflow run for this annotation

GitHub Actions / release

Invalid workflow file

The workflow is not valid. .github/workflows/release.yml (Line: 32, Col: 11): Input tag is required, but not provided while calling.
secrets: inherit
call_release_test_docker_images:
if: ${{ needs.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.release_please.outputs.tag_name }}
secrets: inherit