Skip to content

Commit bd91d0c

Browse files
committed
fix: rename environment variables in workflows
1 parent f129d57 commit bd91d0c

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -32,9 +32,9 @@ jobs:
3232
- name: Test with tox
3333
run: tox -- --cov-report=xml
3434
env:
35-
STRUCTURIZR_WORKSPACE_ID: ${{ secrets.STRUCTURIZR_WORKSPACE_ID }}
36-
STRUCTURIZR_API_KEY: ${{ secrets.STRUCTURIZR_API_KEY }}
37-
STRUCTURIZR_API_SECRET: ${{ secrets.STRUCTURIZR_API_SECRET }}
35+
SECRET_WORKSPACE_ID: ${{ secrets.STRUCTURIZR_WORKSPACE_ID }}
36+
SECRET_API_KEY: ${{ secrets.STRUCTURIZR_API_KEY }}
37+
SECRET_API_SECRET: ${{ secrets.STRUCTURIZR_API_SECRET }}
3838
- name: Report coverage
3939
uses: codecov/codecov-action@v1
4040
with:

.github/workflows/release.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
- name: Test with tox
2828
run: tox
2929
env:
30-
STRUCTURIZR_WORKSPACE_ID: ${{ secrets.STRUCTURIZR_WORKSPACE_ID }}
31-
STRUCTURIZR_API_KEY: ${{ secrets.STRUCTURIZR_API_KEY }}
32-
STRUCTURIZR_API_SECRET: ${{ secrets.STRUCTURIZR_API_SECRET }}
30+
SECRET_WORKSPACE_ID: ${{ secrets.STRUCTURIZR_WORKSPACE_ID }}
31+
SECRET_API_KEY: ${{ secrets.STRUCTURIZR_API_KEY }}
32+
SECRET_API_SECRET: ${{ secrets.STRUCTURIZR_API_SECRET }}
3333
- name: Build package
3434
run: python setup.py sdist bdist_wheel
3535
- name: Check the package

0 commit comments

Comments
 (0)