diff --git a/.github/workflows/dotnet-desktop.yml b/.github/workflows/dotnet-desktop.yml index 044d29a..f7d9d78 100644 --- a/.github/workflows/dotnet-desktop.yml +++ b/.github/workflows/dotnet-desktop.yml @@ -115,6 +115,15 @@ jobs: # Remove the pfx - name: Remove the pfx run: Remove-Item -path GitHubActionsWorkflow.pfx + - name: Upload binaries to release + uses: svenstaro/upload-release-action@v2 + if: contains(github.ref, 'refs/tags/v') + with: + repo_token: ${{ secrets.GITHUB_TOKEN }} + file: dist/*.zip + tag: ${{ github.ref }} + overwrite: true + file_glob: true # Upload the MSIX package: https://github.com/marketplace/actions/upload-artifact #- name: Upload build artifacts