Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Switch pre-release action to ncipollo/release-action #1466

Merged
merged 1 commit into from
Mar 1, 2023
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 8 additions & 6 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -257,7 +257,7 @@ jobs:

# ---------------------------------------------------------------------------

# See https://github.com/marvinpinto/action-automatic-releases#automatically-generate-a-pre-release-when-changes-land-on-master for details
# See https://github.com/ncipollo/release-action
pre-release:
name: Pre Release
needs: [wheels]
Expand All @@ -271,16 +271,18 @@ jobs:
path: dist

- name: GitHub Release
uses: softprops/action-gh-release@v0.1.15
uses: ncipollo/release[email protected]
with:
body: ${{ env.PRE_RELEASE_INSTRUCTIONS }}
prerelease: true
files: dist/*
artifacts: dist/*
name: "Development Build"
tag_name: "latest"
tag: "latest"
token: ${{ secrets.GITHUB_TOKEN }}
generate_release_notes: true
append_body: true
generateReleaseNotes: true
allowUpdates: true
removeArtifacts: true
replacesArtifacts: true

# ---------------------------------------------------------------------------

Expand Down