We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent eacb6c0 commit 75b27cbCopy full SHA for 75b27cb
.github/workflows/release-next.yml
@@ -11,6 +11,8 @@ on:
11
12
jobs:
13
release:
14
+ # Only run on pre-release tags not from main
15
+ if: ${{ github.event.base_ref != 'refs/heads/main' }}
16
runs-on: ubuntu-latest
17
steps:
18
- uses: actions/checkout@8e8c483db84b4bee98b60c0593521ed34d9990e8 # v6
.github/workflows/release.yml
+ # Skip pre-release tags (e.g., v3.0.0-beta.1)
+ if: ${{ !contains(github.ref_name, '-') }}
0 commit comments