Skip to content

Commit

Permalink
Tag Helper for Release
Browse files Browse the repository at this point in the history
  • Loading branch information
Erotemic committed Apr 14, 2024
1 parent 9b5d24d commit a172285
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -430,6 +430,12 @@ jobs:
shell: bash
run: ls -la wheelhouse
- run: 'echo "Automatic Release Notes. TODO: improve" > ${{ github.workspace }}-CHANGELOG.txt'
- name: Tag Release Commit
if: (startsWith(github.event.ref, 'refs/heads/release'))
run: |-
export VERSION=$(python -c "import setup; print(setup.VERSION)"
git tag "v$VERSION"
git push origin "v$VERSION"
- uses: softprops/action-gh-release@v1
name: Create Release
id: create_release
Expand Down
Empty file modified setup.py
100644 → 100755
Empty file.

0 comments on commit a172285

Please sign in to comment.