Skip to content

Commit e0bc037

Browse files
committed
Revert "Use uv to build and publish the package"
This reverts commit 345ab42.
1 parent 345ab42 commit e0bc037

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/deploy.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -80,16 +80,16 @@ jobs:
8080
- name: Install dependencies 📦
8181
run: |
8282
uv sync
83-
uv pip install cyclonedx-bom twine
83+
uv pip install build cyclonedx-bom twine
8484
- name: Generate CycloneDX SBOM artifacts 📃
8585
run: |
8686
uv run python -m cyclonedx_py env --pyproject pyproject.toml --of JSON -o django-saml2-auth-${{ github.ref_name }}.cyclonedx.json
8787
- name: Build package 🏗️
8888
run: |
89-
uv build
89+
uv run python -m build
9090
- name: Publish to PyPI 📦
9191
run: |
92-
uv publish --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} dist/*
92+
uv run python -m twine upload --username __token__ --password ${{ secrets.PYPI_API_TOKEN }} dist/*
9393
- name: Create release and add artifacts 🚀
9494
uses: softprops/action-gh-release@v2
9595
with:

0 commit comments

Comments
 (0)