Skip to content

Commit 73dc05c

Browse files
authored
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.
1 parent bfb197c commit 73dc05c

File tree

2 files changed

+2
-5
lines changed

2 files changed

+2
-5
lines changed

.github/workflows/release-artifacts.yml

+1-5
Original file line numberDiff line numberDiff line change
@@ -212,15 +212,11 @@ jobs:
212212
mv debs*/* debs/
213213
tar -cvJf debs.tar.xz debs
214214
- name: Attach to release
215-
uses: softprops/action-gh-release@a929a66f232c1b11af63782948aa2210f981808a # PR#109
215+
uses: softprops/action-gh-release@v2
216216
env:
217217
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
218218
with:
219219
files: |
220220
Sdist/*
221221
Wheel*/*
222222
debs.tar.xz
223-
# if it's not already published, keep the release as a draft.
224-
draft: true
225-
# mark it as a prerelease if the tag contains 'rc'.
226-
prerelease: ${{ contains(github.ref, 'rc') }}

changelog.d/17923.misc

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
Unpin the upload release GHA action.

0 commit comments

Comments
 (0)