We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f251f58 commit 46f5c4fCopy full SHA for 46f5c4f
1 file changed
.github/workflows/release.yml
@@ -45,11 +45,18 @@ jobs:
45
matrix:
46
package: ${{ fromJSON(needs.setup-release-context.outputs.packages) }}
47
steps:
48
+ - name: Get Token
49
+ id: get_token
50
+ uses: peter-murray/workflow-application-token-action@v4
51
+ with:
52
+ application_id: "${{ secrets.RELEASE_PLEASE_APPLICATION_ID }}"
53
+ application_private_key: ${{ secrets.RELEASE_PLEASE_PRIVATE_KEY }}
54
+ organization: ${{ github.repository_owner }}
55
- uses: googleapis/release-please-action@v3
56
id: release
57
with:
58
default-branch: main
- token: ${{ secrets.RELEASE_PLEASE_TOKEN }}
59
+ token: ${{ steps.get_token.outputs.token }}
60
release-type: simple
61
package-name: ${{ matrix.package }}
62
version-file: ${{ matrix.package }}/version.txt
0 commit comments