Skip to content

Commit 523bd55

Browse files
authored
Changed: Change gha
1 parent 3f4e8d6 commit 523bd55

File tree

1 file changed

+5
-8
lines changed

1 file changed

+5
-8
lines changed

.github/workflows/python-publish.yml

Lines changed: 5 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -36,14 +36,11 @@ jobs:
3636
VERSION_NUMBER=$(python -c "import bigtree; print(bigtree.__version__)")
3737
echo "VERSION_NUMBER=${VERSION_NUMBER}" >> $GITHUB_OUTPUT
3838
- name: Create release
39-
uses: marvinpinto/action-automatic-releases@latest
39+
uses: ncipollo/release-action@v1
4040
env:
4141
VERSION_NUMBER: ${{ steps.set-env-var.outputs.VERSION_NUMBER }}
4242
with:
43-
repo_token: ${{ secrets.GITHUB_TOKEN }}
44-
automatic_release_tag: ${{ env.VERSION_NUMBER }}
45-
title: v${{ env.VERSION_NUMBER }}
46-
prerelease: true
47-
files: |
48-
*.zip
49-
*.tar.gz
43+
name: v${{ env.VERSION_NUMBER }}
44+
tag: ${{ env.VERSION_NUMBER }}
45+
artifacts: "*.zip,*.tar.gz"
46+
makeLatest: true

0 commit comments

Comments
 (0)