Skip to content

Commit

Permalink
CI: Fix conditions for caching/upload with STATIC_DEPS (GH-374)
Browse files Browse the repository at this point in the history
  • Loading branch information
rotu committed Jul 5, 2023
1 parent dd2c366 commit 0a367d0
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -178,7 +178,7 @@ jobs:

- name: Cache [libs]
uses: actions/cache@v3
if: ${{ matrix.env.STATIC_DEPS == 'true' }}
if: matrix.env.STATIC_DEPS
with:
path: |
libs/*.xz
Expand Down Expand Up @@ -212,7 +212,7 @@ jobs:

- name: Upload Wheel
uses: actions/upload-artifact@v3
if: matrix.env.STATIC_DEPS == true || matrix.env.STATIC_DEPS == 'true'
if: matrix.env.STATIC_DEPS
with:
name: wheels-${{ runner.os }}
path: dist/*.whl
Expand Down

2 comments on commit 0a367d0

@wuch-g2v
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Looks like lxml-4.9.3 tag disappeared from git repo.
Intentionally or it is some wrong sync? 🤔

@scoder
Copy link
Member

@scoder scoder commented on 0a367d0 Jul 5, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I had to retract the tag because there was a whole bunch of issues with the wheel build. I fixed most of them by now and will add a new tag.

Please sign in to comment.