Skip to content

Commit

Permalink
pipeline
Browse files Browse the repository at this point in the history
  • Loading branch information
aloneguid committed Nov 6, 2024
1 parent d6c95a9 commit 54e4d61
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/lib.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ jobs:
- build
- test
# only run if VERSION_SUFFIX environment variable has a value and branch is '5.3'
if: env.VERSION_SUFFIX && github.ref == 'refs/heads/5.3'
if: ${{ env.VERSION_SUFFIX && github.ref == 'refs/heads/5.3' }}
steps:
- uses: actions/download-artifact@v4
with:
Expand All @@ -75,7 +75,7 @@ jobs:
- build
- test
# only run if VERSION_SUFFIX environment variable is empty and branch is '5.3'
if: !env.VERSION_SUFFIX && github.ref == 'refs/heads/5.3'
if: ${{ !env.VERSION_SUFFIX && github.ref == 'refs/heads/5.3' }}
steps:
- uses: actions/download-artifact@v4
with:
Expand Down

0 comments on commit 54e4d61

Please sign in to comment.