Skip to content

Commit

Permalink
Fix equality expression
Browse files Browse the repository at this point in the history
  • Loading branch information
mmwinther committed Nov 10, 2023
1 parent 5118903 commit 7db729f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions deploy/jupyterlab/azure-pipelines.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ variables:

jobs:
- job: deploy-staging
condition: ${{ variables.environment == 'staging' }}
condition: ${{ eq(variables.environment, 'staging') }}
pool:
name: jupyterhub-onprem-staging
demands:
Expand All @@ -31,7 +31,7 @@ jobs:
docker image prune --force
- job: deploy-prod
condition: ${{ variables.environment == 'prod' }}
condition: ${{ eq(variables.environment, 'prod') }}
pool:
name: jupyterhub-onprem-prod
demands:
Expand Down

0 comments on commit 7db729f

Please sign in to comment.