File tree Expand file tree Collapse file tree 2 files changed +7
-2
lines changed
Expand file tree Collapse file tree 2 files changed +7
-2
lines changed Original file line number Diff line number Diff line change 2828 SCOPES : ${{ secrets.scopes }}
2929 CLIENT_ID : ${{ secrets.client_id }}
3030 AUTHORITY : ${{ secrets.authority }}
31- run : |
32- > src/environments/keys.ts && echo 'export const AUTHORITY = "'$AUTHORITY'";' >> src/environments/keys.ts && echo 'export const CLIENT_ID = "'$CLIENT_ID'";' >> src/environments/keys.ts && echo 'export const SCOPES = ["'$SCOPES'"];' >> src/environments/keys.ts
31+ run : scripts/populate-keys.sh
3332
3433 - name : Run the test
3534 run : npm run ci-test --if-present
Original file line number Diff line number Diff line change 1+ #! /bin/bash
2+
3+ > src/environments/keys.ts
4+ echo ' export const AUTHORITY = "' $AUTHORITY ' ";' >> src/environments/keys.ts
5+ echo ' export const CLIENT_ID = "' $CLIENT_ID ' ";' >> src/environments/keys.ts
6+ echo ' export const SCOPES = ["' $SCOPES ' "];' >> src/environments/keys.ts
You can’t perform that action at this time.
0 commit comments