From 17103ed066c1bc511d094e5ba0ccceecf66508c6 Mon Sep 17 00:00:00 2001 From: Aaron Reisman Date: Sun, 22 Jan 2023 15:33:27 -0600 Subject: [PATCH] Get release id correctly --- .github/workflows/release.yml | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f9f8044f..29888cd9 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -50,6 +50,7 @@ jobs: path: artifacts - name: Release + id: release uses: softprops/action-gh-release@v1 with: name: Libation ${{ needs.prerelease.outputs.version }} @@ -62,5 +63,5 @@ jobs: env: GITHUB_TOKEN: '${{ secrets.GITHUB_TOKEN }}' with: - release_id: '${{ steps.create_release.outputs.id }}' + release_id: '${{ steps.release.outputs.id }}' assets_path: ./artifacts