letalkui 0.0.0 → 0.0.1

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.
@@ -1,11 +1,12 @@
1
- name: Publish Package to npmjs
1
+ name: Release
2
2
 
3
3
  on:
4
- release:
5
- types: [published]
4
+ push:
5
+ branches:
6
+ - master
7
+
6
8
  jobs:
7
- build:
8
- name: Release
9
+ release:
9
10
  runs-on: ubuntu-latest
10
11
  steps:
11
12
  - name: Checkout
@@ -16,11 +17,11 @@ jobs:
16
17
  with:
17
18
  node-version: "18.20.3"
18
19
  registry-url: 'https://registry.npmjs.org'
19
-
20
+
20
21
  - name: Install dependencies
21
22
  run: npm i -f
22
23
 
23
24
  - name: Publish to NPM
24
- run: npm publish --provenance --access public
25
+ run: npm publish
25
26
  env:
26
27
  NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "letalkui",
3
3
  "private": false,
4
- "version": "0.0.0",
4
+ "version": "0.0.1",
5
5
  "scripts": {
6
6
  "lint": "eslint .",
7
7
  "dev": "storybook dev -p 6006",