We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4852aae commit 66bbcf3Copy full SHA for 66bbcf3
1 file changed
.github/workflows/dotnet-desktop.yml
@@ -3,7 +3,6 @@ name: .NET Build, Test and Publish
3
on:
4
push:
5
branches: ["main"]
6
- tags: ["v*"] # only trigger the publish steps on tags
7
pull_request:
8
9
@@ -48,7 +47,7 @@ jobs:
48
47
name: Publish to NuGet
49
needs: build-and-pack
50
runs-on: ubuntu-latest
51
- if: startsWith(github.ref, 'refs/tags/v') # only on tag pushes
+ if: github.ref == 'refs/heads/main' # Run on push to main branch
52
steps:
53
- name: Download package artifacts
54
uses: actions/download-artifact@v4
0 commit comments