Skip to content

Commit

Permalink
Fix release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
relativityhd committed Sep 29, 2024
1 parent 79057ee commit fc980b2
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/update_version.yml
Original file line number Diff line number Diff line change
Expand Up @@ -105,6 +105,11 @@ jobs:
cd ${{ github.event.inputs.package }} && rye build && cd ..
fi
# Get the new version with rye version and save it as an variable
- name: Get new version
id: get_version
run: echo "VERSION=$(rye version)" >> $GITHUB_OUTPUT

# - name: Publish to PyPI
# run: |
# if [ ${{ github.event.inputs.package }} == 'all' ]; then
Expand Down Expand Up @@ -133,7 +138,7 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
for file in ${{ github.event.inputs.package }}/dist/*.{whl,tar.gz}; do
for file in dist/*.{whl,tar.gz}; do
echo "Uploading $file..."
curl -sSL \
-X POST \
Expand Down

0 comments on commit fc980b2

Please sign in to comment.