Skip to content

Commit

Permalink
fix: if statement issue
Browse files Browse the repository at this point in the history
  • Loading branch information
skim2257 committed May 29, 2024
1 parent 1870268 commit 21715f8
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -117,9 +117,8 @@ jobs:

pip-squeak:
needs: cd
if:
- needs.cd.outputs.released == 'true'
- github.ref == 'refs/heads/main'
if: |
needs.cd.outputs.released == 'true' && github.ref == 'refs/heads/main'
runs-on: ubuntu-latest
steps:
- name: Checkout the code with tag # ${{ needs.cd.outputs.tag }}
Expand Down

0 comments on commit 21715f8

Please sign in to comment.