Publish GitHub release as draft (#5304)

I accidentally changed `draft: false` to `draft: true` in #5240. I
actually think Copilot did this without me realizing.
This commit is contained in:
Charlie Marsh 2023-06-22 12:11:43 -04:00 committed by GitHub
parent 3238a6ef1f
commit c0f93fcf3e
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -491,14 +491,14 @@ jobs:
- name: "Publish to GitHub"
uses: softprops/action-gh-release@v1
with:
draft: false
draft: true
files: binaries/*
tag_name: v${{ inputs.tag }}
# After the release has been published, we update downstream repositories
# This is separate because if this fails the release is still fine, we just need to do some manual workflow triggers
update-dependents:
name: Release
name: Update dependents
runs-on: ubuntu-latest
needs: publish-release
steps: