Skip to content

Commit

Permalink
Fix comparisons in test-n-publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
soininen authored and suvayu committed Aug 25, 2024
1 parent 19899d4 commit ae8f2d8
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/test-n-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,11 +47,11 @@ jobs:
python -m pip install --upgrade pip
python -m pip install build
- name: Build
if: ${{ inputs[matrix.pkg] }} != 'skip'
if: ${{ inputs[matrix.pkg] != 'skip' }}
run: |
python -m build ${{ matrix.pkg }}
- name: Download wheels for packages excluded from build
if: ${{ inputs[matrix.pkg] }} == 'skip'
if: ${{ inputs[matrix.pkg] == 'skip' }}
run: |
mkdir -p ${{ matrix.pkg }}/dist/
sed -nEe 's/name[ ]*=[ ]*"?([a-z0-9_-]+)"?/\1/p' ${{ matrix.pkg }}/pyproject.toml > pkgname
Expand Down

0 comments on commit ae8f2d8

Please sign in to comment.