0
0
Fork 1
mirror of https://mau.dev/maunium/synapse.git synced 2024-12-13 17:13:44 +01:00

Attempt to fix duplicate releases issue (#18025)

This hopefully fixes https://github.com/element-hq/synapse/issues/17991,
as we first upgraded to v2 and are now back to 0.1.15.
(This was lost in https://github.com/element-hq/synapse/pull/17923,
related https://github.com/element-hq/synapse/pull/17995)
This commit is contained in:
Till 2024-12-11 12:40:36 +01:00 committed by GitHub
parent a00d0b3d0e
commit 5b0873516c
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 5 additions and 0 deletions

View file

@ -221,3 +221,7 @@ jobs:
Sdist/*
Wheel*/*
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') }}

1
changelog.d/18025.misc Normal file
View file

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