File tree Expand file tree Collapse file tree 3 files changed +30
-1
lines changed
Expand file tree Collapse file tree 3 files changed +30
-1
lines changed Original file line number Diff line number Diff line change 1+ name : Publish npm package
2+
3+ on :
4+ release :
5+ types : [created]
6+
7+ jobs :
8+ publish-npm :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - name : Checkout code
12+ uses : actions/checkout@v3
13+
14+ - name : Setup Node.js
15+ uses : actions/setup-node@v3
16+ with :
17+ node-version : ' 16'
18+ registry-url : ' https://registry.npmjs.org/'
19+
20+ - name : Install dependencies
21+ run : yarn
22+
23+ - name : Build project
24+ run : yarn build
25+
26+ - name : Publish to npm
27+ run : npm publish
28+ env :
29+ NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
Original file line number Diff line number Diff line change 11{
22 "name" : " dappscout-iframe" ,
33 "description" : " A set of context and hook for an iframe that allows interaction with dApps using a connected wallet." ,
4- "version" : " 0.2.0 " ,
4+ "version" : " 0.2.1 " ,
55 "author" : " Maksim Alekseenko (https://github.com/maxaleks)" ,
66 "contributors" : [
77 " Apoorv Lathey <apoorv.xyz>"
You can’t perform that action at this time.
0 commit comments