Skip to content

Commit

Permalink
experiment for environment variables
Browse files Browse the repository at this point in the history
  • Loading branch information
ckunki committed Apr 25, 2024
1 parent a21a2b8 commit c3baea5
Showing 1 changed file with 6 additions and 3 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,10 @@ jobs:

steps:
- name: Check Environment Variables
run: echo "SAAS_HOST = $SAAS_HOST, A = $A, B = $B"
run: |
echo "SAAS_HOST = $SAAS_HOST, A = $A, B = $B"
echo "$B" > abc.txt
cat abc.txt
env:
SAAS_HOST: '${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_HOST }}'
A: 42
Expand Down Expand Up @@ -115,9 +118,9 @@ jobs:
run: poetry run nox -s coverage -- --
# --db-version ${{ matrix.exasol-version }}
env:
SAAS_HOST: '${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_HOST }}'
SAAS_HOST: '${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_HOST }}'
SAAS_ACCOUNT_ID: '${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_ACCOUNT_ID }}'
SAAS_PAT: '${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_PAT }}'
SAAS_PAT: '${{ secrets.INTEGRATION_TEAM_SAAS_STAGING_PAT }}'

- name: Upload Artifacts
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit c3baea5

Please sign in to comment.