Skip to content

Commit

Permalink
Migrate from hub to gh for uploading release
Browse files Browse the repository at this point in the history
The `hub` CLI tool has been removed from the runners themselves.
see: mislav/hub#3338
  • Loading branch information
jaamarks committed Jun 4, 2024
1 parent 2454aca commit 7ab296f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/python-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,7 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
run: |
tag_name="${GITHUB_REF##*/}"
hub release edit $(find ./dist/ -type f -printf "-a %p ") -m "" "$tag_name"
gh release upload $tag_name $(find ./dist/ -type f -printf "%p ")
- name: Build Docs # Need to update install directions to use new release
run: |
Expand Down

0 comments on commit 7ab296f

Please sign in to comment.