File tree 2 files changed +31
-0
lines changed
2 files changed +31
-0
lines changed Original file line number Diff line number Diff line change
1
+ * @ aayush-sib @ ekta-slit
Original file line number Diff line number Diff line change
1
+ name : Node.js Package
2
+ on :
3
+ release :
4
+ types : [created]
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ permissions :
9
+ contents : read
10
+ packages : write
11
+ steps :
12
+ - uses : actions/checkout@v2
13
+ # Setup .npmrc file to publish to npm
14
+ - uses : actions/setup-node@v2
15
+ with :
16
+ node-version : ' 14'
17
+ registry-url : ' https://registry.npmjs.org'
18
+ - run : npm install
19
+ - run : npm publish --access public
20
+ env :
21
+ NODE_AUTH_TOKEN : ${{ secrets.NPM_TOKEN }}
22
+ # Setup .npmrc file to publish to GitHub Packages
23
+ - uses : actions/setup-node@v2
24
+ with :
25
+ registry-url : ' https://npm.pkg.github.com'
26
+ scope : ' @sendinblue'
27
+ # Publish to GitHub Packages
28
+ - run : npm publish
29
+ env :
30
+ NODE_AUTH_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments