File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 2323
2424 - run : npm run build
2525 env :
26- TURBO_TOKEN : LFvQuMjyiZb3dfAB8hlBs1bd
26+ TURBO_TOKEN : ${{ secrets.VERCEL_TOKEN }}
2727 TURBO_TEAM : brunod-e
2828
2929 - name : Deploy storybook
Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ push :
5+ branches :
6+ - main
7+
8+ concurrency : ${{ github.workflow }}-${{ github.ref }}
9+
10+ jobs :
11+ release :
12+ name : Release
13+ runs-on : ubuntu-latest
14+ steps :
15+ - name : Checkout
16+ uses : actions/checkout@v3
17+
18+ - name : Setup Node.js
19+ uses : actions/setup-node@v3
20+ with :
21+ node-version : 16
22+ cache : ' npm'
23+ cache-dependency-path : ' **/package-lock.json'
24+
25+ - run : npm ci
26+
27+ - name : Publish to NPM
28+ id : changesets
29+ uses : changesets/action@v1
30+ with :
31+ publish : npm run release
32+ env :
33+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
34+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
35+ TURBO_TOKEN : ${{ secrets.VERCEL_TOKEN }}
36+ TURBO_TEAM : brunod-e
Original file line number Diff line number Diff line change 11# @brunod-e-ignite-ui/tokens
22
3+ ## 2.1.0
4+
5+ ### Minor Changes
6+
7+ - Add new test color
8+
39## 2.0.0
410
511### Major Changes
Original file line number Diff line number Diff line change 11{
22 "name" : " @brunod-e-ignite-ui/tokens" ,
3- "version" : " 2.0 .0" ,
3+ "version" : " 2.1 .0" ,
44 "description" : " " ,
55 "main" : " ./dist/index.js" ,
66 "module" : " ./dist/index.mjs" ,
Original file line number Diff line number Diff line change @@ -15,4 +15,6 @@ export const colors = {
1515 ignite500 : '#00875F' ,
1616 ignite700 : '#015F43' ,
1717 ignite900 : '#00291D' ,
18- }
18+
19+ test : '#FF0000' ,
20+ } ;
You can’t perform that action at this time.
0 commit comments