Skip to content

Commit

Permalink
Fix env vars
Browse files Browse the repository at this point in the history
  • Loading branch information
vijaiaeroastro committed Jun 1, 2024
1 parent deb68a1 commit d388086
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -303,7 +303,7 @@ jobs:
integration-tests-latest-release:
runs-on: ubuntu-20.04
needs: [deploy-linux, deploy-windows, deploy-macos]
if: env.RUN_INTEGRATION_TESTS == 'on' # Single check before the job starts
if: ${{ env.RUN_INTEGRATION_TESTS == 'on' }} # Single check before the job starts
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -367,7 +367,7 @@ jobs:
integration-tests-last-two-releases:
runs-on: ubuntu-20.04
needs: [deploy-linux, deploy-windows, deploy-macos]
if: env.RUN_INTEGRATION_TESTS == 'on' # Single check before the job starts
if: ${{ env.RUN_INTEGRATION_TESTS == 'on' }} # Single check before the job starts
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -469,7 +469,7 @@ jobs:
integration-tests-latest-commit:
runs-on: ubuntu-20.04
needs: [deploy-linux, deploy-windows, deploy-macos]
if: env.RUN_INTEGRATION_TESTS == 'on' # Single check before the job starts
if: ${{ env.RUN_INTEGRATION_TESTS == 'on' }} # Single check before the job starts
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down Expand Up @@ -524,7 +524,7 @@ jobs:
integration-test-last-commit-and-last-release:
runs-on: ubuntu-20.04
needs: [deploy-linux, deploy-windows, deploy-macos]
if: env.RUN_INTEGRATION_TESTS == 'on' # Single check before the job starts
if: ${{ env.RUN_INTEGRATION_TESTS == 'on' }} # Single check before the job starts
steps:
- name: Checkout code
uses: actions/checkout@v2
Expand Down

0 comments on commit d388086

Please sign in to comment.