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 6d2ca02 commit f8f15f4Copy full SHA for f8f15f4
.github/workflows/release.yml
@@ -1,6 +1,7 @@
1
name: PhysX-JS-WebIDL - Release Library
2
3
on:
4
+ workflow_dispatch:
5
push:
6
tags:
7
- 'v*'
@@ -13,10 +14,6 @@ jobs:
13
14
build:
15
name: Build PhysX-JS-WebIDL
16
runs-on: ubuntu-latest
- environment: publish
17
- permissions:
18
- contents: write
19
- id-token: write
20
21
steps:
22
- name: Checkout Repository
@@ -47,9 +44,14 @@ jobs:
47
44
- name: Setup node
48
45
uses: actions/setup-node@v4
49
46
with:
50
- node-version: '20.x'
+ node-version: '20'
51
registry-url: 'https://registry.npmjs.org'
52
-
+
+ - name: Update npm
+ run: npm install -g npm@latest
+ - name: Run npm ci
53
+ working-directory: ./dist
54
+ run: npm ci
55
- name: Publish to npmjs
56
working-directory: ./dist
57
run: npm publish
0 commit comments