We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent c024027 commit a9627b6Copy full SHA for a9627b6
.github/workflows/schedule-rc.yml
@@ -12,12 +12,18 @@ jobs:
12
runs-on: ubuntu-latest
13
timeout-minutes: 30
14
steps:
15
+ - name: Create GitHub App Token
16
+ uses: actions/create-github-app-token@v1
17
+ id: app-token
18
+ with:
19
+ app-id: ${{ vars.PUSH_TO_RC_BRANCH_PRIVATE_KEY }}
20
+ private-key: ${{ secrets.PUSH_TO_RC_BRANCH_APP_ID }}
21
- name: Checkout
22
uses: actions/checkout@v4
23
with:
24
repository: ${{ github.repository }}
25
ref: ${{ github.ref }}
- token: ${{ secrets.PUSH_TO_IC }}
26
+ token: ${{ steps.app-token.outputs.token }}
27
- name: Cut Release Candidate
28
shell: bash
29
run: |
0 commit comments