Skip to content

Commit

Permalink
Chore: fix sqlglotrs deployment job (#4656)
Browse files Browse the repository at this point in the history
* Chore: fix sqlglotrs deployment job

* Fixup
  • Loading branch information
georgesittas authored Jan 23, 2025
1 parent 3d208f9 commit 28f56cb
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/python-publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Upload wheels
uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.os }}-${{ matrix.target }}
path: sqlglotrs/dist

sdist-rs:
Expand All @@ -86,17 +86,17 @@ jobs:
- name: Upload sdist
uses: actions/upload-artifact@v4
with:
name: wheels
name: sdist
path: sqlglotrs/dist

deploy-rs:
needs: [should-deploy-rs, build-rs, sdist-rs]
if: needs.should-deploy-rs.outputs.deploy == 'true'
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
path: sqlglotrs/dist
- name: Publish to PyPI
uses: PyO3/maturin-action@v1
env:
Expand Down

0 comments on commit 28f56cb

Please sign in to comment.