Skip to content

Commit

Permalink
[ESI][Runtime] Fix publishing job in workflow
Browse files Browse the repository at this point in the history
Download and upload artifacts have to match
  • Loading branch information
teqdruid committed May 21, 2024
1 parent 49f663c commit d3ebc7f
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/esiRuntimePublish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,6 @@ jobs:
push_wheels:
name: Push wheels (Tag or Weekly)
runs-on: ubuntu-20.04
if: github.repository == 'llvm/circt' && (github.ref_type == 'tag' || github.event_name == 'schedule')
needs: build_wheels
environment:
name: pypi
Expand All @@ -80,16 +79,18 @@ jobs:

steps:
- name: Download wheels
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4
with:
path: ./wheelhouse/
merge-multiple: true

- name: List downloaded wheels
run: ls -laR
working-directory: ./wheelhouse/

- name: Upload wheels to pypi
uses: pypa/gh-action-pypi-publish@release/v1
if: github.repository == 'llvm/circt' && (github.ref_type == 'tag' || github.event_name == 'schedule')
with:
packages-dir: wheelhouse/
verify-metadata: false

0 comments on commit d3ebc7f

Please sign in to comment.