Skip to content

Commit f8b52cb

Browse files
committed
chore: add new test color to tokens
1 parent 50316a2 commit f8b52cb

5 files changed

Lines changed: 47 additions & 3 deletions

File tree

.github/workflows/deploy-docs.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ jobs:
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

.github/workflows/release.yml

Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
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

packages/tokens/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
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

packages/tokens/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
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",

packages/tokens/src/colors.ts

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,4 +15,6 @@ export const colors = {
1515
ignite500: '#00875F',
1616
ignite700: '#015F43',
1717
ignite900: '#00291D',
18-
}
18+
19+
test: '#FF0000',
20+
};

0 commit comments

Comments
 (0)