Aligned GA (#2059)

This commit is contained in:
Joe Milazzo 2023-06-10 15:12:35 -05:00 committed by GitHub
parent 17f9748d88
commit baf7c9eb92
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -4,7 +4,7 @@ on:
push:
branches: '**'
pull_request:
branches: [ main, develop ]
branches: [ main, develop, canary ]
types: [synchronize]
jobs:
@ -83,10 +83,10 @@ jobs:
run: dotnet test --no-restore --verbosity normal
version:
name: Bump version on Develop push
name: Bump version on Develop/Canary push
needs: [ build ]
runs-on: ubuntu-latest
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/develop' }}
if: ${{ github.event_name == 'push' && (github.ref == 'refs/heads/develop' || github.ref == 'refs/heads/canary') }}
steps:
- uses: actions/checkout@v3
with: