Skip to content

Release Workflow

Release Workflow #3

Workflow file for this run

# Release workflow is the main workflow that coordinates various GitHub workflows involved in a release of Resonate.
name: Release Workflow
on:
release:
types:
- published
workflow_dispatch:
jobs:
publish-github-image:

Check failure on line 11 in .github/workflows/release.yaml

View workflow run for this annotation

GitHub Actions / Release Workflow

Invalid workflow file

The workflow is not valid. .github/workflows/release.yaml (Line: 11, Col: 3): Error calling workflow 'resonatehq/resonate/.github/workflows/release_publish_github_image.yaml@19b18e07c96d6e4bbbff74fe71cc293ec3464a2b'. The nested job 'build-and-push-image' is requesting 'packages: write', but is only allowed 'packages: read'.
uses: ./.github/workflows/release_publish_github_image.yaml
with:
tag: ${{ github.ref_name }}
publish-github-artifacts:
uses: ./.github/workflows/release_publish_github_artifacts.yaml
with:
tag: ${{ github.ref_name }}
verify-github-artifacts:
needs: [publish-github-image, publish-github-artifacts]
uses: ./.github/workflows/release_verify_artifacts.yaml
with:
tag: ${{ github.ref_name }}