mirror of
https://mau.dev/maunium/synapse.git
synced 2024-12-05 03:28:24 +01:00
Fix release process to not create duplicate releases (#17970)
This is to work around https://github.com/softprops/action-gh-release/issues/445 --------- Co-authored-by: Quentin Gliech <quenting@element.io>
This commit is contained in:
parent
8c653e1dd6
commit
f3fd6852ac
2 changed files with 3 additions and 1 deletions
3
.github/workflows/release-artifacts.yml
vendored
3
.github/workflows/release-artifacts.yml
vendored
|
@ -212,7 +212,8 @@ jobs:
|
|||
mv debs*/* debs/
|
||||
tar -cvJf debs.tar.xz debs
|
||||
- name: Attach to release
|
||||
uses: softprops/action-gh-release@v2
|
||||
# Pinned to work around https://github.com/softprops/action-gh-release/issues/445
|
||||
uses: softprops/action-gh-release@v2.0.5
|
||||
env:
|
||||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||
with:
|
||||
|
|
1
changelog.d/17970.bugfix
Normal file
1
changelog.d/17970.bugfix
Normal file
|
@ -0,0 +1 @@
|
|||
Fix release process to not create duplicate releases.
|
Loading…
Reference in a new issue