From 9c6a93eebb689f04e57b9257962b1ea219671e18 Mon Sep 17 00:00:00 2001 From: Adrienne Walker Date: Fri, 1 Dec 2023 10:20:17 -0800 Subject: [PATCH] ci: change release.yml to use tag explicitly (#5972) It doesn't seem to pick up the tag from earlier in the job and just says `refs/head/main` which is not helpful. Hopefully being explicit will fix this. --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 664ae83d0d..0a77747c6f 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -105,7 +105,7 @@ jobs: uses: ncipollo/release-action@v1 with: name: ${{ needs.validate_tag.outputs.version }} - tag: ${{ github.ref }} + tag: v${{ needs.validate_tag.outputs.version }} artifacts: cactbot-${{ needs.validate_tag.outputs.version }}.zip artifactContentType: application/zip draft: true