Skip to content

Commit

Permalink
tokens: adds new test color
Browse files Browse the repository at this point in the history
  • Loading branch information
daniellmiranda committed Aug 30, 2023
1 parent daf9060 commit 7d46fc2
Show file tree
Hide file tree
Showing 4 changed files with 43 additions and 1 deletion.
33 changes: 33 additions & 0 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
name: Release

on:
push:
branches:
- main

concurrency: ${{ github.workflow }}-${{ github.ref }}

jobs:
release:
name: Release
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3

- name: Setup Node.js 18.x
uses: actions/setup-node@v3
with:
node-version: 18.x

- name: Install Dependencies
run: pnpm i

- name: Publish to NPM
id: changesets
uses: changesets/action@v1
with:
publish: pnpm release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
7 changes: 7 additions & 0 deletions packages/tokens/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
# @wolves-league-ui/tokens

## 1.0.1

### Patch Changes

- Add new test color
2 changes: 1 addition & 1 deletion packages/tokens/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@wolves-league-ui/tokens",
"version": "1.0.0",
"version": "1.0.1",
"main": "./dist/index.js",
"module": "dist/index.mjs",
"types": "./dist/index.d.ts",
Expand Down
2 changes: 2 additions & 0 deletions packages/tokens/src/colors.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,4 +16,6 @@ export const colors = {
wl500: '#ff0000',
wl700: '#800000',
wl900: '#400000',

test: '#fff',
};

0 comments on commit 7d46fc2

Please sign in to comment.