Skip to content

Commit

Permalink
Corrige la condition pour lancer le job de déploiement en prod
Browse files Browse the repository at this point in the history
  • Loading branch information
marc-rutkowski committed Oct 19, 2023
1 parent beb8a16 commit 7708934
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cd-app.yml
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ jobs:
deploy-app:
name: Déploie l'app
if: ${{ ! github.event.inputs.is-test-app == 'true' }}
if: ${{ github.event.inputs.is-test-app != 'true' }}
needs: build-app
environment: ${{ github.event.inputs.target }}
runs-on: ubuntu-latest
Expand Down

0 comments on commit 7708934

Please sign in to comment.