@neveranyart/weaver 1.0.16 → 1.0.18

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,31 @@
1
+ name: Publish Package
2
+
3
+ on:
4
+ push:
5
+ tags:
6
+ - "v*"
7
+
8
+ permissions:
9
+ id-token: write # Required for OIDC
10
+ contents: read
11
+
12
+ jobs:
13
+ publish:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v6
17
+
18
+ - name: Corepack enable
19
+ run: corepack enable
20
+
21
+ - uses: actions/setup-node@v6
22
+ with:
23
+ node-version: "24"
24
+ registry-url: "https://registry.npmjs.org"
25
+ cache: "yarn"
26
+
27
+ - name: Install dependencies
28
+ run: yarn install --immutable
29
+
30
+ - name: Publish package
31
+ run: npm publish