Skip to content

Commit

Permalink
🔧 Update default branch name in build and release workflows
Browse files Browse the repository at this point in the history
The default branch name in the build and release workflows has been updated from "master" to "main". This change ensures consistency with the new naming convention.
  • Loading branch information
creazy231 committed Feb 2, 2024
1 parent 235b748 commit a90c9ac
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: build
'on':
push:
branches:
- master
- main
jobs:
build_and_deploy:
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ name: release
'on':
push:
branches:
- master
- main

concurrency:
group: release-${{ github.ref }}
Expand Down

0 comments on commit a90c9ac

Please sign in to comment.