Skip to content

Commit

Permalink
disable creating releases on development branch
Browse files Browse the repository at this point in the history
  • Loading branch information
nam20485 committed Oct 23, 2023
1 parent a5b3171 commit 02ac149
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/cmake-multi-platform.yml
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ jobs:
# only on pushes to the release branch
name: Create Release
needs: build
if: ${{ (github.ref_name == 'development' || github.ref_name == 'release') && github.event_name == 'push' }}
if: ${{ (github.ref_name == 'release') && github.event_name == 'push' }}
runs-on: ubuntu-22.04
permissions:
contents: write
Expand Down

0 comments on commit 02ac149

Please sign in to comment.