There was an error while loading. Please reload this page.
2 parents 0cc1d1f + 0473c41 commit 6bf0d24Copy full SHA for 6bf0d24
1 file changed
.github/workflows/update_version.yml
@@ -27,6 +27,19 @@ jobs:
27
- name: Checkout repository
28
uses: actions/checkout@v6
29
30
+ - name: Generate GitHub App token
31
+ id: app-token
32
+ uses: actions/create-github-app-token@v3
33
+ with:
34
+ app-id: ${{ vars.GH_APP_ID }}
35
+ private-key: ${{ secrets.GH_APP_KEY }}
36
+ owner: citusdata
37
+
38
+ - name: Export App token to environment
39
+ run: |
40
+ echo "GH_TOKEN=${{ steps.app-token.outputs.token }}" >> "$GITHUB_ENV"
41
+ echo "GITHUB_TOKEN=${{ steps.app-token.outputs.token }}" >> "$GITHUB_ENV"
42
43
- name: Install package dependencies
44
run: sudo apt-get update && sudo apt install libcurl4-openssl-dev libssl-dev python3-testresources
45
0 commit comments