We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 5392c5f commit 8ee0586Copy full SHA for 8ee0586
.github/workflows/npm-publish.yml
@@ -0,0 +1,23 @@
1
+name: Release NPM package
2
+
3
+on:
4
+ release:
5
+ types: [created]
6
+ push:
7
+ branches:
8
+ - 'master'
9
+ - 'release'
10
+ - 'release-*'
11
12
+jobs:
13
+ publish-gpr:
14
+ runs-on: ubuntu-latest
15
+ steps:
16
+ - uses: actions/checkout@v2
17
+ - uses: actions/setup-node@v1
18
+ with:
19
+ node-version: 12
20
+ registry-url: https://npm.pkg.github.com/
21
+ - run: npm publish
22
+ env:
23
+ NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}}
package.json
@@ -1,5 +1,5 @@
{
- "name": "argo-ui",
+ "name": "@argoproj/argo-ui",
"version": "1.0.0",
"main": "./src/index.ts",
"types": "./src/index.ts",
0 commit comments