diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 3707435..7abae25 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -33,6 +33,19 @@ jobs: run: msbuild.exe ChangeTimestamp.sln /t:Build /p:Configuration=${{ matrix.configuration }} + # Create Release + - name: Create Release + id: create_release + uses: actions/create-release@v1.9.0 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + with: + tag_name: AutoBuild + release_name: AutoBuild + body: ${{ steps.changelog.outputs.changelog }} + draft: false + prerelease: true + # Upload Release Asset - name: Upload Release Asset id: upload-release-asset