@cam-wstream/core 1.0.1 → 1.0.2

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.
@@ -7,13 +7,17 @@ on:
7
7
 
8
8
  jobs:
9
9
  publish:
10
+ name: Publish Job
10
11
  runs-on: ubuntu-latest
11
12
  steps:
12
- - uses: actions/checkout@v4
13
- - uses: actions/setup-node@v4
13
+ - name: checkout repo
14
+ uses: actions/checkout@v4
15
+ - name: Setup Node.js
16
+ uses: actions/setup-node@v4
14
17
  with:
15
18
  node-version: 20
16
19
  registry-url: 'https://registry.npmjs.org'
17
- - run: npm publish
20
+ - name: Publish package
21
+ run: npm publish
18
22
  env:
19
23
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@cam-wstream/core",
3
- "version": "1.0.1",
3
+ "version": "1.0.2",
4
4
  "description": "Core utils and shared setup",
5
5
  "type": "commonjs",
6
6
  "publishConfig": {