Skip to content

Commit

Permalink
Fix missing steps
Browse files Browse the repository at this point in the history
  • Loading branch information
aborgna-q committed Aug 2, 2024
1 parent b42284b commit da8ba8f
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,14 @@ jobs:
name: Check tag
runs-on: ubuntu-latest
outputs:
run: ${{ github.event_name != 'release' || ( github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/tket2-py-v') ) }}
run: ${{ github.job.steps.check-tag.outputs.run }}
steps:
- name: Check tag
id: check-tag
run: |
echo "run=$SHOULD_RUN" >> $GITHUB_ENV
env:
SHOULD_RUN: ${{ github.event_name != 'release' || ( github.ref_type == 'tag' && startsWith(github.ref, 'refs/tags/tket2-py-v') ) }}

linux:
needs: check-tag
Expand Down

0 comments on commit da8ba8f

Please sign in to comment.