Skip to content

Commit

Permalink
🔧Fix branch trigger
Browse files Browse the repository at this point in the history
  • Loading branch information
pleonex committed Dec 6, 2023
1 parent 8824de4 commit 777c888
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build-and-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,11 +17,11 @@ jobs:
with:
dotnet_version: '8.0.100'

# Preview release on push to main only
# Preview release on push to develop only
# Stable release on version tag push only
deploy:
name: "Deploy"
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/v')
if: github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/tags/v')
needs: build
uses: ./.github/workflows/deploy.yml
with:
Expand Down

0 comments on commit 777c888

Please sign in to comment.