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.
2 parents b5fcb9a + 1c0ed7f commit 8822cb9Copy full SHA for 8822cb9
.github/workflows/main.yml
@@ -0,0 +1,19 @@
1
+name: Publish
2
+
3
+on:
4
+ release:
5
+ types: [published]
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v1
12
+ - uses: actions/setup-node@v1
13
+ with:
14
+ node-version: 12
15
+ registry-url: https://registry.npmjs.org/
16
+ - run: yarn install
17
+ - run: npm publish --access public
18
+ env:
19
+ NODE_AUTH_TOKEN: ${{secrets.NPM_TOKEN}}
package.json
@@ -1,5 +1,5 @@
{
- "name": "tc-auth-lib",
+ "name": "@topcoder-platform/tc-auth-lib",
"version": "1.0.0",
"description": "Topcoder Authentication lib ",
"main": "index.js",
0 commit comments