Skip to content

Commit

Permalink
add workflow-tester8
Browse files Browse the repository at this point in the history
Signed-off-by: GuillaumeFalourd <[email protected]>
  • Loading branch information
GuillaumeFalourd committed Jul 29, 2021
1 parent cc1676e commit 2c23898
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/workflow-tester8.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,13 +20,13 @@ jobs:
job2:
runs-on: ubuntu-latest
needs: [job1]
if: contains( ${{needs.job1.outputs.tag_version}} , 'dev-')
if: contains( needs.job1.outputs.tag_version , 'dev-')
steps:
- run: echo "${{needs.job1.outputs.tag_version}}"

job3:
runs-on: ubuntu-latest
needs: [job1]
if: contains( ${{needs.job1.outputs.tag_version}} , 'prod-')
if: contains( needs.job1.outputs.tag_version , 'prod-')
steps:
- run: echo "${{needs.job1.outputs.tag_version}}"

0 comments on commit 2c23898

Please sign in to comment.