We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9fa2c34 commit 63ceb24Copy full SHA for 63ceb24
.github/workflows/CD-time-tracker-ui.yml
@@ -29,7 +29,9 @@ jobs:
29
SCOPES: ${{ secrets.scopes }}
30
CLIENT_ID: ${{ secrets.client_id }}
31
AUTHORITY: ${{ secrets.authority }}
32
- run: sudo sh scripts/populate-keys.sh
+ run: |
33
+ chmod +x ./scripts/populate-keys.sh
34
+ sh ./scripts/populate-keys.sh
35
36
- name: 'run: npm install and build'
37
run: |
scripts/populate-keys.sh
@@ -4,3 +4,4 @@
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
7
+cat src/environments/keys.ts
0 commit comments