Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
19 changes: 19 additions & 0 deletions .github/workflows/maturin.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,6 +75,25 @@ jobs:
name: wheels-macos-${{ matrix.target }}
path: ./vrp-cli/dist

pypi-publish:
name: Publish artifacts to Uptick's Pypi repo
if: startswith(github.ref, 'ref/tags/')
permissions:
contents: write
needs: [linux, macos]
runs-on: ubuntu-latest
steps:
- uses: actions/download-artifact@d3f86a106a0bac45b974a628896c90dbdf5c8093 # ratchet:actions/download-artifact@v4
with:
path: dist
merge-multiple: true
- uses: uptick/actions/.github/workflows/ci.yaml@main # ratchet:exclude
secrets: inherit
with:
pypi-dist: dist
uv: true
python: true
s3pypi-publish: true
gh-publish:
name: Publish artifacts to GH
if: startsWith(github.ref, 'refs/tags/')
Expand Down