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 5500fa9 commit 8a34f9dCopy full SHA for 8a34f9d
1 file changed
.github/workflows/release.yml
@@ -5,6 +5,8 @@ on:
5
push:
6
tags:
7
- 'v*' # Triggers for tags starting with 'v', such as v1.0
8
+ workflow_dispatch: # Allows you to manually trigger the fix
9
+
10
jobs:
11
release_to_npm:
12
name: Release to npm
@@ -14,8 +16,9 @@ jobs:
14
16
id-token: write
15
17
steps:
18
- uses: actions/checkout@v6
- - name: Use Node.js 24.x
- uses: actions/setup-node@v6
19
+ with:
20
+ fetch-depth: 0 # Ensures it gets the tags and history correctly - name: Use Node.js 24.x
21
+ - uses: actions/setup-node@v6
22
with:
23
node-version: 24.x
24
cache: 'npm'
0 commit comments