Skip to content

Commit d458e02

Browse files
committed
move env attribute
1 parent e0363cd commit d458e02

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

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

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -44,11 +44,6 @@ jobs:
4444

4545
- name: Inject Secrets
4646
shell: python
47-
env:
48-
SCOPES: {{ $secrets.scopes }}
49-
CLIENT_ID: {{ $secrets.client_id }}
50-
AUTHORITY: {{ $secrets.authority }}
51-
BASE_PATH: "src/environments/"
5247
run: |
5348
import os
5449
import json
@@ -61,6 +56,11 @@ jobs:
6156
data["authority"] = os.environ['AUTHORITY']
6257
with open(base_path + "keys.json", "w+") as jsonFileWrite:
6358
json.dump(data, jsonFileWrite)
64-
59+
env:
60+
SCOPES: {{ $secrets.scopes }}
61+
CLIENT_ID: {{ $secrets.client_id }}
62+
AUTHORITY: {{ $secrets.authority }}
63+
BASE_PATH: "src/environments/"
64+
6565
- name: Run the test
6666
run: npm run ci-test --if-present

0 commit comments

Comments
 (0)