We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cfbe594 commit c2ad37fCopy full SHA for c2ad37f
.github/workflows/ci.yml
@@ -74,9 +74,16 @@ jobs:
74
contents: write # needed for github actions bot to write to repo
75
pull-requests: write
76
steps:
77
+ - name: Generate token
78
+ id: app-token
79
+ uses: actions/create-github-app-token@29824e69f54612133e76f7eaac726eef6c875baf
80
+ with:
81
+ app-id: ${{ secrets.GH_APP_ID }}
82
+ private-key: ${{ secrets.GH_APP_PRIVATE_KEY }}
83
- uses: googleapis/release-please-action@v4
84
id: release
85
with:
86
+ token: ${{ steps.app-token.outputs.token }}
87
target-branch: ${{ github.ref_name }}
88
config-file: release-please-config.json
89
manifest-file: .release-please-manifest.json
0 commit comments