Skip to content

[pull] master from slgobinath:master #109

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
May 5, 2025
Prev Previous commit
Next Next commit
release action: move building package earlier to avoid creating tag o…
…n failure
  • Loading branch information
deltragon committed May 5, 2025
commit 47b74f3f994f034aa3909d9b672d095fe1c8c1d8
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,9 @@ jobs:
field: project.version
id: get_current_version

- name: Build Python Package
run: rm -rf build *.egg-info/ && python3 -m build

- name: Create Tag
uses: mathieudutour/[email protected]
with:
Expand All @@ -50,9 +53,6 @@ jobs:
body: ${{steps.build_changelog.outputs.changelog}}
token: ${{ secrets.GH_API_SECRET }}

- name: Build Python Package
run: rm -rf build *.egg-info/ && python3 -m build

- name: Publish to PyPi
uses: pypa/[email protected]
with:
Expand Down