We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 14b6d48 commit a45f53dCopy full SHA for a45f53d
.github/workflows/release.yml
@@ -0,0 +1,24 @@
1
+name: Release
2
+
3
+on:
4
+ workflow_dispatch:
5
6
+jobs:
7
+ release:
8
+ runs-on: ubuntu-latest
9
+ environment: production
10
+ steps:
11
+ - name: Checkout Javascript
12
+ uses: actions/checkout@v3
13
+ - name: Setup Node
14
+ uses: actions/setup-node@v2
15
+ with:
16
+ node-version: '16'
17
+ - name: Install dependencies
18
+ run: npm install
19
+ - name: Package
20
+ run: ./build-package.sh
21
+ - name: Upload
22
+ run: ./push-package.sh
23
+ env:
24
+ NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
0 commit comments