Skip to content

Commit 77f172c

Browse files
authored
Merge pull request #1573 from session-foundation/fix-make-sure-no-live-release
chore: make sure we never publish a release through ci
2 parents 866026f + d235810 commit 77f172c

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/build-binaries.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -68,7 +68,7 @@ jobs:
6868
with:
6969
tag: v${{ steps.get_version.outputs.VERSION_TAG }}
7070
name: 'Session ${{ steps.get_version.outputs.VERSION_TAG }}'
71-
draft: true
71+
draft: true # important to keep this, so we **NEVER** make a live release through the CI
7272
bodyFile: ${{ env.SHOULD_PUBLISH_ALPHA == 'true' && 'build/release-notes-alpha.md' || 'build/release-notes.md' }}
7373
allowUpdates: true
7474
skipIfReleaseExists: true
@@ -189,6 +189,7 @@ jobs:
189189
with:
190190
tag: v${{ needs.create_draft_release_if_needed.outputs.version_tag }}
191191
artifacts: 'dist/latest-linux.yml'
192+
draft: true # important to keep this, so we **NEVER** make a live release through the CI
192193
allowUpdates: true
193194
omitNameDuringUpdate: true
194195
omitBodyDuringUpdate: true
@@ -342,6 +343,7 @@ jobs:
342343
with:
343344
tag: v${{ needs.create_draft_release_if_needed.outputs.version_tag }}
344345
artifacts: 'dist/latest-mac.yml'
346+
draft: true # important to keep this, so we **NEVER** make a live release through the CI
345347
allowUpdates: true
346348
omitBodyDuringUpdate: true
347349
omitNameDuringUpdate: true

0 commit comments

Comments
 (0)