From ed16ec2e9117d43af6dd54b975fc9987d39e2bb8 Mon Sep 17 00:00:00 2001 From: kawaiizenbo <48113593+kawaiizenbo@users.noreply.github.com> Date: Fri, 10 Dec 2021 20:51:59 -0700 Subject: [PATCH] i do not know if this will actually work --- .github/workflows/dotnet.yml | 12 ++++++++++++ 1 file changed, 12 insertions(+) diff --git a/.github/workflows/dotnet.yml b/.github/workflows/dotnet.yml index 0b0e6ea..e0e3589 100644 --- a/.github/workflows/dotnet.yml +++ b/.github/workflows/dotnet.yml @@ -28,3 +28,15 @@ jobs: with: name: Build path: RepoFullDownloader-Core/bin/Debug/netcoreapp3.1/ + - name: Create Release + id: create_release + uses: actions/create-release@v1 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} # This token is provided by Actions, you do not need to create your own token + with: + tag_name: ${{ github.ref }} + release_name: Release ${{ github.ref }} + body: | + This release was automatically generated by Github Actions + draft: false + prerelease: false