Skip to content

Commit

Permalink
build main instead of ma
Browse files Browse the repository at this point in the history
  • Loading branch information
niondir committed Sep 6, 2024
1 parent 930c699 commit 0762dd7
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: Build
on:
push:
branches:
- master
- main
- feature/**
- update/**
- fix/**
Expand All @@ -17,8 +17,8 @@ on:
workflow_dispatch:

concurrency:
group: "${{ github.workflow }}-${{ (github.ref_type == 'tag') && 'master' || github.ref_name }}"
cancel-in-progress: ${{ github.ref_type == 'tag' || github.ref_name != 'master' }}
group: "${{ github.workflow }}-${{ (github.ref_type == 'tag') && 'main' || github.ref_name }}"
cancel-in-progress: ${{ github.ref_type == 'tag' || github.ref_name != 'main' }}

jobs:
build:
Expand Down

0 comments on commit 0762dd7

Please sign in to comment.