We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 87bab64 commit a7c1cb1Copy full SHA for a7c1cb1
.github/workflows/nightly-release.yaml
@@ -17,14 +17,17 @@ jobs:
17
name: Nightly Release
18
runs-on: ubuntu-latest
19
20
- permissions:
21
- contents: write
22
-
23
steps:
+ - uses: actions/create-github-app-token@df432ceedc7162793a195dd1713ff69aefc7379e # v2.0.6
+ id: otelbot-token
+ with:
24
+ app-id: ${{ vars.OTELBOT_COLLECTOR_RELEASES_APP_ID }}
25
+ private-key: ${{ secrets.OTELBOT_COLLECTOR_RELEASES_PRIVATE_KEY }}
26
+
27
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
28
with:
29
fetch-depth: 0
- token: ${{ secrets.GH_PAT }}
30
+ token: ${{ steps.otelbot-token.outputs.token }}
31
32
- name: 'Push new tag'
33
run: |
0 commit comments