Skip to content

Commit

Permalink
Merge pull request #836 from polyadic/release-branches
Browse files Browse the repository at this point in the history
  • Loading branch information
bash authored Feb 4, 2025
2 parents 56980f7 + 071bc19 commit ccc1707
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@ name: Build

on:
push:
branches: [ main, funcky3 ]
branches: [ main, release/** ]
pull_request:
branches: [ main, funcky3 ]
branches: [ main, release/** ]

env:
DOTNET_NOLOGO: 1
Expand Down Expand Up @@ -68,7 +68,7 @@ jobs:
- name: Generate NuGet Packages
run: dotnet pack --output nupkg
- uses: actions/upload-artifact@v4
if: success() && github.ref == 'refs/heads/main'
if: success() && (github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/heads/release/'))
with:
name: nupkg
path: nupkg/*
Expand Down

0 comments on commit ccc1707

Please sign in to comment.