Skip to content

Commit 5dce7df

Browse files
committed
fix: fix tag-format string escaping in beta release workflow
1 parent b89530d commit 5dce7df

File tree

1 file changed

+1
-9
lines changed

1 file changed

+1
-9
lines changed

.github/workflows/beta-release.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,16 +1,13 @@
11
name: Beta Release
2-
32
on:
43
push:
54
branches:
65
- tailwindcss-v4
7-
86
permissions:
97
contents: write # to be able to publish a GitHub release
108
issues: write # to comment on issues after release
119
pull-requests: write # to comment on PRs after release
1210
id-token: write # for OIDC (npm provenance)
13-
1411
jobs:
1512
beta-release:
1613
name: Build & Publish @beta Release
@@ -20,25 +17,20 @@ jobs:
2017
uses: actions/checkout@v4
2118
with:
2219
fetch-depth: 0
23-
2420
- name: Setup Node
2521
uses: actions/setup-node@v4
2622
with:
2723
node-version: 'lts/*'
28-
2924
- name: Use PNPM
3025
uses: pnpm/action-setup@v4
3126
with:
3227
version: 8
33-
3428
- name: Install dependencies
3529
run: pnpm install
36-
3730
# - name: Verify Integrity
3831
# run: pnpm audit signatures
39-
4032
- name: Run Semantic Release
4133
env:
4234
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
4335
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
44-
run: npx semantic-release --branch=beta --tag-format=beta-v${version}
36+
run: npx semantic-release --branch=beta --tag-format="beta-v\${version}"

0 commit comments

Comments
 (0)