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: push:
branches: '**' branches: '**'
pull_request: pull_request:
branches: [ main, develop ] branches: [ main, develop, canary ]
types: [synchronize] types: [synchronize]
jobs: jobs:
@ -83,10 +83,10 @@ jobs:
run: dotnet test --no-restore --verbosity normal run: dotnet test --no-restore --verbosity normal
version: version:
name: Bump version on Develop push name: Bump version on Develop/Canary push
needs: [ build ] needs: [ build ]
runs-on: ubuntu-latest 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: steps:
- uses: actions/checkout@v3 - uses: actions/checkout@v3
with: with: