vue_web_1124 1.0.3 → 1.0.5

Sign up to get free protection for your applications and to get access to all the features.
@@ -0,0 +1,34 @@
1
+ name: publish
2
+
3
+ on:
4
+ push:
5
+ branches:
6
+ - master
7
+
8
+ jobs:
9
+ publish-npm:
10
+ runs-on: ubuntu-latest
11
+
12
+ steps:
13
+ - name: Checkout
14
+ uses: actions/checkout@v4
15
+ with:
16
+ ref: master
17
+
18
+ - name: Setup
19
+ uses: actions/setup-node@v4
20
+ with:
21
+ node-version: "20.x"
22
+ registry-url: https://registry.npmjs.org/
23
+
24
+ - name: Publish
25
+ run: |
26
+ git config --global user.email "duck@email.com"
27
+ git config --global user.name "yaya"
28
+ npm version patch
29
+ npm publish
30
+ env:
31
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
32
+ - name: Push
33
+ run: |
34
+ git push
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "vue_web_1124",
3
- "version": "1.0.3",
3
+ "version": "1.0.5",
4
4
  "description": "vue_web_1124",
5
5
  "author": "yaya"
6
6
  }