We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9bc1df1 commit 2cc5608Copy full SHA for 2cc5608
.github/workflows/create-release.yml
@@ -3,12 +3,14 @@ name: Create Release
3
# Manual trigger only
4
on: [workflow_dispatch]
5
6
+# Since we are reusing a workflow, we must match the permissions that
7
+# upstream workflow requires.
8
+permissions:
9
+ contents: write
10
+ id-token: write
11
+
12
jobs:
13
tag-and-publish:
14
uses: newrelic/node-newrelic/.github/workflows/release-creation.yml@main
15
with:
16
workflows: ci-workflow.yml,smoke-test-workflow.yml
- # See release-creation.yml explaining why this has to be done
- secrets:
- npm_token: ${{ secrets.NODE_AGENT_NPM_TOKEN }}
-
0 commit comments