@modastar/z-router 0.0.16 → 0.0.17

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.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@modastar/z-router",
3
- "version": "0.0.16",
3
+ "version": "0.0.17",
4
4
  "description": "",
5
5
  "keywords": [],
6
6
  "homepage": "https://github.com/xLanStar/z-router#readme",
@@ -1,38 +0,0 @@
1
- name: Publish Package
2
-
3
- on:
4
- push:
5
- tags:
6
- - "v*"
7
-
8
- permissions:
9
- id-token: write
10
- contents: read
11
-
12
- jobs:
13
- publish:
14
- runs-on: ubuntu-latest
15
- steps:
16
- - uses: actions/checkout@v4
17
-
18
- - uses: actions/setup-node@v4
19
- with:
20
- node-version: "24"
21
- registry-url: "https://registry.npmjs.org"
22
-
23
- - name: Setup pnpm
24
- uses: pnpm/action-setup@v4
25
-
26
- - name: Cache pnpm store and node_modules
27
- uses: actions/cache@v4
28
- with:
29
- path: |
30
- node_modules
31
- ~/.pnpm-store
32
- key: ${{ runner.os }}-pnpm-${{ hashFiles('pnpm-lock.yaml') }}
33
-
34
- - name: Install dependencies
35
- run: pnpm install
36
-
37
- - name: Publish package
38
- run: pnpm publish --provenance --access public --no-git-checks