We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 87d9fda + dd3cbbf commit 7d2eadcCopy full SHA for 7d2eadc
1 file changed
.github/workflows/release.yml
@@ -26,18 +26,23 @@ jobs:
26
id-token: write # Required for OIDC trusted publishing
27
contents: write
28
steps:
29
+ - name: Checkout code
30
+ uses: actions/checkout@v6
31
+
32
+ - name: Setup Node.js
33
+ uses: actions/setup-node@v6
34
+ with:
35
+ node-version: '24'
36
+ registry-url: "https://registry.npmjs.org"
37
+ scope: "@sistent"
38
39
- name: "Set Package Version"
40
uses: reedyuk/npm-version@1.1.1
41
with:
42
version: ${{ github.event.release.tag_name }}
43
- - uses: actions/setup-node@v6
- with:
- node-version: '24'
- registry-url: "https://registry.npmjs.org"
- scope: "@sistent"
- - run: |
44
+ - name: Install, Build, and Publish Package
45
+ run: |
46
npm install
47
npm run build
48
npm publish --provenance --access public --verbose
0 commit comments