Skip to content

Commit

Permalink
fix publishing new versions to lts branch and trigger v23.9.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
olegfedorovdev committed Feb 19, 2024
1 parent 430dfc1 commit ea67fe9
Showing 1 changed file with 2 additions and 3 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/create_new_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,8 @@ jobs:
create-new-release:
if: |
github.event.pull_request.merged &&
(startsWith(github.head_ref, 'release-v') ||
startsWith(github.head_ref, 'release/v')) &&
startsWith(github.base_ref, 'main')
(startsWith(github.head_ref, 'release-v') || startsWith(github.head_ref, 'release/v')) &&
(startsWith(github.base_ref, 'main') || startsWith(github.base_ref, 'lts/v'))
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
Expand Down

0 comments on commit ea67fe9

Please sign in to comment.