We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent bec3bd3 commit 13b53bcCopy full SHA for 13b53bc
.github/workflows/build.yml
@@ -2,9 +2,9 @@ name: Build
2
3
on:
4
push:
5
- branches: [ main, funcky3 ]
+ branches: [ main, release/** ]
6
pull_request:
7
8
9
env:
10
DOTNET_NOLOGO: 1
@@ -68,7 +68,7 @@ jobs:
68
- name: Generate NuGet Packages
69
run: dotnet pack --output nupkg
70
- uses: actions/upload-artifact@v4
71
- if: success() && github.ref == 'refs/heads/main'
+ if: success() && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/'))
72
with:
73
name: nupkg
74
path: nupkg/*
0 commit comments