Skip to content

Commit

Permalink
[RELEASE] Fix tagging for realz (#538)
Browse files Browse the repository at this point in the history
* [RELEASE] Fix release tagging

* [RELEASE] Fix tagging for realz

* wut
  • Loading branch information
nickclyde authored May 5, 2023
1 parent 9a2739e commit 4fd35ac
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/createNewRelease.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@ jobs:
- name: Get PHDI Version
id: get_version
run: |
echo "version=$(poetry version)" >> $GITHUB_OUTPUT
VERSION_WITH_PHDI=$(poetry version)
echo "version=${VERSION_WITH_PHDI:5}" >> $GITHUB_OUTPUT
# Create new release tag
- name: Set up Git user
run: |
Expand All @@ -65,7 +66,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.get_version.outputs.version }}
release_name: Release ${{ steps.get_version.outputs.version }}
release_name: Release ${{ steps.get_version.outputs.version }}

release-to-pypi:
name: Build and publish PHDI to PyPI
Expand Down

0 comments on commit 4fd35ac

Please sign in to comment.