0
0
Fork 1
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:
Erik Johnston 2024-12-02 10:54:14 +00:00 committed by Quentin Gliech
parent 8c653e1dd6
commit f3fd6852ac
No known key found for this signature in database
GPG key ID: 22D62B84552719FC
2 changed files with 3 additions and 1 deletions

View file

@ -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
View file

@ -0,0 +1 @@
Fix release process to not create duplicate releases.