Skip to content

Commit 63ceb24

Browse files
committed
fix: #130 missing client_id
1 parent 9fa2c34 commit 63ceb24

File tree

2 files changed

+4
-1
lines changed

2 files changed

+4
-1
lines changed

.github/workflows/CD-time-tracker-ui.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -29,7 +29,9 @@ jobs:
2929
SCOPES: ${{ secrets.scopes }}
3030
CLIENT_ID: ${{ secrets.client_id }}
3131
AUTHORITY: ${{ secrets.authority }}
32-
run: sudo sh scripts/populate-keys.sh
32+
run: |
33+
chmod +x ./scripts/populate-keys.sh
34+
sh ./scripts/populate-keys.sh
3335
3436
- name: 'run: npm install and build'
3537
run: |

scripts/populate-keys.sh

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@
44
echo 'export const AUTHORITY = "'$AUTHORITY'";' >> src/environments/keys.ts
55
echo 'export const CLIENT_ID = "'$CLIENT_ID'";' >> src/environments/keys.ts
66
echo 'export const SCOPES = ["'$SCOPES'"];' >> src/environments/keys.ts
7+
cat src/environments/keys.ts

0 commit comments

Comments
 (0)