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 e0363cd commit d458e02Copy full SHA for d458e02
.github/workflows/CI-time-tracker-ui.yml
@@ -44,11 +44,6 @@ jobs:
44
45
- name: Inject Secrets
46
shell: python
47
- env:
48
- SCOPES: {{ $secrets.scopes }}
49
- CLIENT_ID: {{ $secrets.client_id }}
50
- AUTHORITY: {{ $secrets.authority }}
51
- BASE_PATH: "src/environments/"
52
run: |
53
import os
54
import json
@@ -61,6 +56,11 @@ jobs:
61
56
data["authority"] = os.environ['AUTHORITY']
62
57
with open(base_path + "keys.json", "w+") as jsonFileWrite:
63
58
json.dump(data, jsonFileWrite)
64
-
59
+ env:
60
+ SCOPES: {{ $secrets.scopes }}
+ CLIENT_ID: {{ $secrets.client_id }}
+ AUTHORITY: {{ $secrets.authority }}
+ BASE_PATH: "src/environments/"
+
65
- name: Run the test
66
run: npm run ci-test --if-present
0 commit comments