Skip to content

Commit 8b8bb59

Browse files
chore: add new test colors to tokens
1 parent 4dbe1b4 commit 8b8bb59

File tree

4 files changed

+46
-1
lines changed

4 files changed

+46
-1
lines changed

.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@v4
17+
18+
- name: Setup Node.js
19+
uses: actions/setup-node@v3
20+
with:
21+
node-version: 18
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.TURBO_TOKEN }}
36+
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}

packages/tokens/CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
# @ign-ui/tokens
2+
3+
## 1.1.0
4+
5+
### Minor Changes
6+
7+
- Add new test color

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": "@ign-ui/tokens",
3-
"version": "1.0.0",
3+
"version": "1.1.0",
44
"description": "",
55
"main": "./dist/index.js",
66
"module": "./dist/index.mjs",

packages/tokens/src/colors.ts

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -16,4 +16,6 @@ export const colors = {
1616
ignite500: '#00875F',
1717
ignite700: '#015F43',
1818
ignite900: '#00291D',
19+
20+
test: '#FFF',
1921
}

0 commit comments

Comments
 (0)