Skip to content
This repository has been archived by the owner on Jul 9, 2024. It is now read-only.

Commit

Permalink
ci: fix condition
Browse files Browse the repository at this point in the history
  • Loading branch information
coderbyheart committed Apr 7, 2021
1 parent 4440f29 commit 82a2ba5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/cd.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
APP_NAME: nrfassettrackerprod
B2C_TENANT: nrfassettrackerprod

if: secrets.E2E_AZURE_CREDENTIALS != ''
if: ${{ secrets.E2E_AZURE_CREDENTIALS != '' }}

steps:
- uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test-and-release.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
B2C_CLIENT_SECRET: ${{ secrets.E2E_B2C_CLIENT_SECRET }}
B2C_TENANT_ID: ${{ secrets.E2E_B2C_TENANT_ID }}

if: secrets.E2E_AZURE_CREDENTIALS != ''
if: ${{ secrets.E2E_AZURE_CREDENTIALS != '' }}

steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit 82a2ba5

Please sign in to comment.