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

Set prerelease to true even for version-tagged CI job #1504

Merged
merged 1 commit into from
Mar 3, 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
5 changes: 2 additions & 3 deletions .github/workflows/python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
workflow_dispatch:
inputs:
force_build_wheel:
description: 'Build python wheels'
description: "Build python wheels"
required: true
default: false
type: boolean
Expand Down Expand Up @@ -314,7 +314,7 @@ jobs:
- name: GitHub Release
uses: ncipollo/release-action@v1.12.0
with:
prerelease: false
prerelease: true
artifacts: dist/*
token: ${{ secrets.GITHUB_TOKEN }}
generateReleaseNotes: true
Expand Down Expand Up @@ -395,7 +395,6 @@ jobs:
git commit -m "Update docs for ${GITHUB_SHA}"
git push origin gh-pages-orphan:gh-pages -f


# Mike will incrementally update the existing gh-pages branch
# We then check it out, and reset it to a new orphaned branch, which we force-push to origin
# to make sure we don't accumulate unnecessary history in gh-pages branch
Expand Down