Skip to content

Commit 545c7c4

Browse files
committed
ci: TT-401 fix inject secrets
1 parent e3f5300 commit 545c7c4

File tree

1 file changed

+3
-8
lines changed

1 file changed

+3
-8
lines changed

.github/workflows/python-package.yml

Lines changed: 3 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -14,6 +14,9 @@ jobs:
1414
runs-on: ubuntu-latest
1515
strategy:
1616
max-parallel: 5
17+
env:
18+
ENVIRONMENT: ${{ secrets.ENVIRONMENT }}
19+
TEST_DB_CONNECTION: ${{ secrets.TEST_DB_CONNECTION }}
1720
steps:
1821
- uses: actions/checkout@v2
1922
- name: Set up Python 3.10.0
@@ -29,14 +32,6 @@ jobs:
2932
run: |
3033
pip install -r V2/requirements.txt
3134
32-
- name: Inject Secrets
33-
env:
34-
ENVIRONMENT: ${{ secrets.environment }}
35-
TEST_DB_CONNECTION: ${{ secrets.test_db_connection }}
36-
run: |
37-
echo $ENVIRONMENT
38-
echo $TEST_DB_CONNECTION
39-
4035
- name: Lint with flake8
4136
run: |
4237
cd V2

0 commit comments

Comments
 (0)