From cd098b421ea243f2c31a705d3631d9fa149d8401 Mon Sep 17 00:00:00 2001 From: Jonas Strassel Date: Sat, 4 May 2024 21:48:48 +0200 Subject: [PATCH] feat: default to creating pre-releases as promoting a release should be a manual process --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index e822294..999f8eb 100644 --- a/action.yml +++ b/action.yml @@ -337,7 +337,7 @@ runs: echo "## github upload" echo ${{ github.token }} | gh auth login --with-token - gh release create ${{ inputs.release-tag }} --title ${{ inputs.release-tag }} --repo ${{ github.repository }} --notes "automated release" || echo "release already exists" + gh release create ${{ inputs.release-tag }} --title ${{ inputs.release-tag }} --repo ${{ github.repository }} --notes "automated release" --prerelease || echo "release already exists" GITHUB_LINK=https://github.com/${GITHUB_REPOSITORY}/releases/download/${{ inputs.release-tag }}