Skip to content
Snippets Groups Projects
Unverified Commit 73dc05c9 authored by Erik Johnston's avatar Erik Johnston Committed by GitHub
Browse files

Unpin the upload release GHA action (#17923)

We were pinned to an old version that had deprecation warnings.

In new versions of the action leaving off properties (i.e. `draft` and
`prerelease`) tells the action to not modify those properties of the
release.
parent bfb197c5
No related branches found
No related tags found
No related merge requests found
...@@ -212,7 +212,7 @@ jobs: ...@@ -212,7 +212,7 @@ jobs:
mv debs*/* debs/ mv debs*/* debs/
tar -cvJf debs.tar.xz debs tar -cvJf debs.tar.xz debs
- name: Attach to release - name: Attach to release
uses: softprops/action-gh-release@a929a66f232c1b11af63782948aa2210f981808a # PR#109 uses: softprops/action-gh-release@v2
env: env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with: with:
...@@ -220,7 +220,3 @@ jobs: ...@@ -220,7 +220,3 @@ jobs:
Sdist/* Sdist/*
Wheel*/* Wheel*/*
debs.tar.xz debs.tar.xz
# if it's not already published, keep the release as a draft.
draft: true
# mark it as a prerelease if the tag contains 'rc'.
prerelease: ${{ contains(github.ref, 'rc') }}
Unpin the upload release GHA action.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment