File tree Expand file tree Collapse file tree 5 files changed +57
-3
lines changed Expand file tree Collapse file tree 5 files changed +57
-3
lines changed 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
+ # This expects you to have a script called release which does a build for your packages and calls changeset publish
32
+ publish : npm run release
33
+ env :
34
+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
35
+ NPM_TOKEN : ${{ secrets.NPM_TOKEN }}
36
+ TURBO_TOKEN : ${{ secrets.TURBO_TOKEN }}
37
+ TURBO_TEAM : ${{ secrets.TURBO_TEAM }}
Original file line number Diff line number Diff line change @@ -23,6 +23,16 @@ https://www.npmjs.com/package/@airs-ui/docs
23
23
24
24
Para utilizar o remote caching da vercel para melhorar a performance e o tempo de build do design system [ https://vercel.com/doc ] ( https://vercel.com/docs/concepts/monorepos/remote-caching )
25
25
26
+
27
+ ### Changesets
28
+
29
+ [ Documentation] ( https://github.com/changesets/changesets )
30
+
31
+ É um gerenciador de versionamento de repositórios
32
+
33
+ Também foi utilizado um workflow para a automatização do gerenciamento da versão do repositório modificado e a publicação no NPM.
34
+
35
+
26
36
### Vercel Accesstoken
27
37
28
38
[ https://vercel.com/account/tokens ] ( https://vercel.com/account/tokens )
Original file line number Diff line number Diff line change 1
1
# @airs-ui/tokens
2
2
3
+ ## 2.1.0
4
+
5
+ ### Minor Changes
6
+
7
+ - Add new test color
8
+
3
9
## 2.0.0
4
10
5
11
### Major Changes
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " @airs-ui/tokens" ,
3
- "version" : " 2.0 .0" ,
3
+ "version" : " 2.1 .0" ,
4
4
"description" : " " ,
5
5
"main" : " ./dist/index.js" ,
6
6
"module" : " ./dist/index.mjs" ,
Original file line number Diff line number Diff line change 1
-
2
1
export const colors = {
3
2
white : '#FFF' ,
4
3
black : '#000' ,
@@ -16,4 +15,6 @@ export const colors = {
16
15
ignite500 : '#00875F' ,
17
16
ignite700 : '#015F43' ,
18
17
ignite900 : '#00291D' ,
19
- } as const
18
+
19
+ test : '#FFF' ,
20
+ } as const
You can’t perform that action at this time.
0 commit comments