Skip to content

Commit

Permalink
ci: add concept of beta
Browse files Browse the repository at this point in the history
  • Loading branch information
Belphemur committed Apr 3, 2024
1 parent 67d5eeb commit e535b20
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/dotnet.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@ name: .NET

on:
push:
branches: [ dev, master ]
branches: [ dev, master, beta ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ dev, master ]
branches: [ dev, master, beta ]
env:
# Stop wasting time caching packages
DOTNET_SKIP_FIRST_TIME_EXPERIENCE: true
Expand Down Expand Up @@ -183,7 +183,7 @@ jobs:
group: ${{ github.workflow }}-${{ github.ref }}-release
cancel-in-progress: true
needs: [ build, changes ]
if: github.ref == 'refs/heads/master'
if: github.ref == 'refs/heads/master' || github.ref == 'refs/heads/beta'
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
Expand Down

0 comments on commit e535b20

Please sign in to comment.