Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Update secrets
  • Loading branch information
fabidick22 committed Mar 25, 2020
commit f5032d85b0cfaeb1dcfe0110cccffb983239df6f
10 changes: 5 additions & 5 deletions .github/workflows/CI-time-tracker-ui.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,6 @@ jobs:
name: Running unit tests
runs-on: ubuntu-latest
timeout-minutes: 90
env:
SCOPES: {{ $secrets.scopes }}
CLIENT_ID: {{ $secrets.client_id }}
AUTHORITY: {{ $secrets.authority }}
BASE_PATH: "src/environments/"
steps:
- name: Clone and checkout branch
uses: actions/checkout@master
Expand All @@ -49,6 +44,11 @@ jobs:

- name: Inject Secrets
shell: python
env:
SCOPES: ${{ $secrets.scopes }}
CLIENT_ID: ${{ $secrets.client_id }}
AUTHORITY: ${{ $secrets.authority }}
BASE_PATH: "src/environments/"
run: |
import os
import json
Expand Down