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 fdf3b6d commit f819fd0Copy full SHA for f819fd0
1 file changed
.github/workflows/beta-release.yaml
@@ -21,7 +21,7 @@ jobs:
21
ref: ${{ github.head_ref }}
22
- uses: actions/setup-node@v4
23
with:
24
- node-version: '22.14.0'
+ node-version: '20.x'
25
registry-url: 'https://registry.npmjs.org'
26
cache: 'yarn'
27
@@ -41,8 +41,16 @@ jobs:
41
env:
42
GITHUB_PR_NUMBER: ${{ github.event.pull_request.number }}
43
44
+ - name: Build package
45
+ run: npm run build
46
+
47
+ - uses: actions/setup-node@v4
48
+ with:
49
+ node-version: '22.14.0'
50
+ registry-url: 'https://registry.npmjs.org'
51
52
- name: Release a new beta version
- run: npm publish --tag beta --access public
53
+ run: npm publish --tag beta --access public --ignore-scripts
54
55
- uses: actions/github-script@v6
56
0 commit comments