Skip to content

Commit

Permalink
chore: adjust release.yml - add condition for rc
Browse files Browse the repository at this point in the history
  • Loading branch information
arnautov-anton committed Feb 27, 2025
1 parent feb97da commit 3283683
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ jobs:
name: Release from "${{ github.ref_name }}" branch
runs-on: ubuntu-latest
# GH does not allow to limit branches in the workflow_dispatch settings so this here is a safety measure
if: ${{ inputs.dry_run || startsWith(github.ref_name, 'release') || startsWith(github.ref_name, 'master') }}
if: ${{ inputs.dry_run || github.ref_name == 'rc' || startsWith(github.ref_name, 'release') || startsWith(github.ref_name, 'master') }}
steps:
- name: Checkout
uses: actions/checkout@v4
Expand Down

0 comments on commit 3283683

Please sign in to comment.