We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3f4e8d6 commit 523bd55Copy full SHA for 523bd55
.github/workflows/python-publish.yml
@@ -36,14 +36,11 @@ jobs:
36
VERSION_NUMBER=$(python -c "import bigtree; print(bigtree.__version__)")
37
echo "VERSION_NUMBER=${VERSION_NUMBER}" >> $GITHUB_OUTPUT
38
- name: Create release
39
- uses: marvinpinto/action-automatic-releases@latest
+ uses: ncipollo/release-action@v1
40
env:
41
VERSION_NUMBER: ${{ steps.set-env-var.outputs.VERSION_NUMBER }}
42
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
+ name: v${{ env.VERSION_NUMBER }}
+ tag: ${{ env.VERSION_NUMBER }}
+ artifacts: "*.zip,*.tar.gz"
+ makeLatest: true
0 commit comments