-
-
Notifications
You must be signed in to change notification settings - Fork 5
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
8 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -204,17 +204,17 @@ jobs: | |
matrix: ${{ fromJSON(needs.project-metadata.outputs.release_commits_matrix) }} | ||
runs-on: ubuntu-24.04 | ||
steps: | ||
- name: Install uv | ||
run: | | ||
python -m pip install -r https://raw.githubusercontent.com/kdeldycke/workflows/main/requirements/uv.txt | ||
- name: Download build artifacts | ||
uses: actions/[email protected] | ||
id: download | ||
with: | ||
name: ${{ github.event.repository.name }}-build-${{ matrix.short_sha }} | ||
- name: Push package to public PyPi repository | ||
uses: pypa/[email protected] | ||
with: | ||
user: __token__ | ||
password: ${{ secrets.PYPI_TOKEN }} | ||
packages-dir: ${{ steps.download.outputs.download-path }} | ||
- name: Push to PyPi | ||
run: | | ||
uv --no-progress publish --token "${{ secrets.PYPI_TOKEN }}" "${{ steps.download.outputs.download-path }}" | ||
github-release: | ||
name: Publish GitHub release | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters