File tree Expand file tree Collapse file tree 1 file changed +9
-9
lines changed
Expand file tree Collapse file tree 1 file changed +9
-9
lines changed Original file line number Diff line number Diff line change @@ -15,9 +15,6 @@ permissions:
1515 contents : read
1616 pages : write
1717 id-token : write
18- env :
19- GRAPHQL_TOKEN : ${{ secrets.GRAPHQL_TOKEN }}
20- ORGANIZATION_NAME : ${{ vars.ORGANIZATION_NAME }}
2118# Allow only one concurrent deployment, skipping runs queued between the run in-progress and latest queued.
2219# However, do NOT cancel in-progress runs as we want to allow these production deployments to complete.
2320concurrency :
2724 # Build job
2825 build :
2926 runs-on : ubuntu-latest
27+ timeout-minutes : 120
3028 steps :
29+ - uses : actions/create-github-app-token@67018539274d69449ef7c02e8e71183d1719ab42 # v2.1.4
30+ id : generate_token
31+ with :
32+ app-id : ${{ secrets.APP_ID }}
33+ private-key : ${{ secrets.APP_PRIVATE_KEY }}
3134 - name : Checkout
3235 uses : actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v4
3336 - name : Setup Node
@@ -37,18 +40,15 @@ jobs:
3740 - name : Get current date
3841 id : date
3942 run : echo "DATE=$(date +'%Y-%m')" >> $GITHUB_ENV
40- - name : Restore conda downloads cache
41- uses : actions/cache@v4
42- with :
43- path : |
44- ~/.dashboard
45- key : conda-download-cache-${{ env.DATE }}
4643 - name : Collect metrics and save output
4744 id : metrics
4845 run : |
4946 cd backend
5047 npm i
5148 npm run dev
49+ env :
50+ ORGANIZATION_NAME : ${{ vars.ORGANIZATION_NAME }}
51+ GRAPHQL_TOKEN : ${{ steps.generate_token.outputs.token }}
5252 - name : Detect package manager
5353 id : detect-package-manager
5454 run : |
You can’t perform that action at this time.
0 commit comments