We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 2b69969 commit 73166beCopy full SHA for 73166be
1 file changed
.github/workflows/release.yml
@@ -11,6 +11,10 @@ on:
11
push:
12
tags:
13
- "v*.*.*"
14
+ # TEMPORARY (pre-merge validation): run the build-only dry run on pushes
15
+ # to the release feature branch. Remove after the first successful run.
16
+ branches:
17
+ - feature/cli-and-github-release
18
workflow_dispatch:
19
20
# Least privilege by default; only the `release` job below gets write access.
@@ -40,7 +44,7 @@ jobs:
40
44
cache: npm
41
45
42
46
- name: Validate tag format and package-version match
43
- if: github.event_name == 'push'
47
+ if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags/')
48
run: node scripts/release-check.mjs --tag-only --tag "$GITHUB_REF_NAME"
49
50
- name: Install dependencies (locked)
0 commit comments