From a4d58acd10e86973551fa3992d6c363f76449a6d Mon Sep 17 00:00:00 2001 From: metamethods Date: Mon, 26 Jun 2023 20:40:32 -0700 Subject: [PATCH] Attempt 2 --- .github/workflows/main.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/main.yml b/.github/workflows/main.yml index f8b6ece..617a5df 100644 --- a/.github/workflows/main.yml +++ b/.github/workflows/main.yml @@ -27,7 +27,13 @@ jobs: - name: Publish project run: dotnet publish --configuration Release --output ./publish + - name: Generate tag + id: tag + run: | + echo "::set-output name=release_tag::Build_v1.0.0" + - name: Create release uses: softprops/action-gh-release@v1 with: + tag_name: ${{ steps.tag.outputs.release_tag }} files: ./publish/*.exe \ No newline at end of file