File tree Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Expand file tree Collapse file tree 2 files changed +7
-11
lines changed Original file line number Diff line number Diff line change @@ -200,16 +200,11 @@ jobs:
200200 mv debs*/* debs/
201201 tar -cvJf debs.tar.xz debs
202202 - name : Attach to release
203- # Pinned to work around https://github.com/softprops/action-gh-release/issues/445
204- uses : softprops/action-gh-release@c95fe1489396fe8a9eb87c0abf8aa5b2ef267fda # v0.1.15
205203 env :
206204 GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
207- with :
208- files : |
209- Sdist/*
210- Wheel*/*
211- debs.tar.xz
212- # if it's not already published, keep the release as a draft.
213- draft : true
214- # mark it as a prerelease if the tag contains 'rc'.
215- prerelease : ${{ contains(github.ref, 'rc') }}
205+ run : |
206+ gh release upload "${{ github.ref_name }}" \
207+ Sdist/* \
208+ Wheel*/* \
209+ debs.tar.xz \
210+ --repo ${{ github.repository }}
Original file line number Diff line number Diff line change 1+ Prevent duplicate GitHub draft releases being created during the Synapse release process.
You can’t perform that action at this time.
0 commit comments