Skip to content

Commit

Permalink
fix syntax
Browse files Browse the repository at this point in the history
  • Loading branch information
HokageM committed Mar 28, 2024
1 parent 938bbd6 commit 511a481
Showing 1 changed file with 5 additions and 5 deletions.
10 changes: 5 additions & 5 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,11 @@ jobs:
python setup.py sdist bdist_wheel
- name: Extract version number from tag
id: extract_version
run: |
TAG=$(echo "${GITHUB_REF##*/}")
VERSION=$(echo $TAG | sed 's/^v//')
echo "::set-output name=version::$VERSION"
id: extract_version
run: |
TAG=$(echo "${GITHUB_REF##*/}")
VERSION=$(echo $TAG | sed 's/^v//')
echo "::set-output name=version::$VERSION"
- name: Publish to PyPI
env:
Expand Down

0 comments on commit 511a481

Please sign in to comment.