Skip to content

add packages: write permission #32

add packages: write permission

add packages: write permission #32

name: Releases
on:
workflow_dispatch:
inputs:
checkout-ref:
description: "The branch, tag or SHA to checkout. See actions/checkout 'ref'."
required: false
type: string
push:
branches: [ main ]
release:
types: [ created ]
concurrency:
group: "Releases: ${{ github.workflow }} @ ${{ inputs.checkout-ref }} ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}"
cancel-in-progress: false
jobs:
tests:
uses: ./.github/workflows/run_tests.yml
permissions:
checks: write
contents: read
with:
checkout-ref: ${{ inputs.checkout-ref }}

Check failure on line 31 in .github/workflows/workflow_release.yml

View workflow run for this annotation

GitHub Actions / Releases

Invalid workflow file

The workflow is not valid. adamko-dev/kotka-streams/.github/workflows/run_tests.yml@9e561beeb9178283c1bbb7480756ef25984b080b (Line: 31, Col: 3): Error calling workflow 'adamko-dev/kotka-streams/.github/workflows/run_gradle_task.yml@9e561beeb9178283c1bbb7480756ef25984b080b'. The workflow is requesting 'packages: write', but is only allowed 'packages: none'.
publish-maven:
needs: tests
# only publish when manually triggered, or it's the main branch, or it's for a release
if: inputs.checkout-ref || github.ref == 'refs/heads/main' || (github.event_name == 'release' && github.event.action == 'created')
uses: ./.github/workflows/run_publish_maven.yml
secrets: inherit
permissions:
checks: write
contents: write
packages: write
with:
checkout-ref: ${{ inputs.checkout-ref }}
publish-site:
needs: tests
# only publish when manually triggered, or it's for a release
if: inputs.checkout-ref || (github.event_name == 'release' && github.event.action == 'created')
uses: ./.github/workflows/run_publish_site.yml
permissions:
checks: write
contents: read
id-token: write # to verify the deployment originates from an appropriate source
packages: write
pages: write # to deploy to Pages
with:
checkout-ref: ${{ inputs.checkout-ref }}