-
Notifications
You must be signed in to change notification settings - Fork 1
41 lines (39 loc) · 1.11 KB
/
generate-tokens-on-input.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: Generate Tokens on Input
on:
push:
branches:
- main
paths:
- "tokens/**/*.json"
- "tokens/**/*.yml"
jobs:
generate_tokens:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Install Node.js
uses: actions/setup-node@v2
with:
node-version: 16.13
- name: Install Node Dependencies
run: npm ci
env:
YALESITES_BUILD_TOKEN: ${{ secrets.YALESITES_BUILD_TOKEN }}
- name: Build Style Dictionary
run: npm run build
- name: Commit Generated Platform Deliverables
uses: EndBug/add-and-commit@v7
with:
add: "build -f"
message: "build: update design tokens"
- name: Release
env:
GITHUB_TOKEN: ${{secrets.GITHUB_TOKEN}}
YALESITES_BUILD_TOKEN: ${{secrets.YALESITES_BUILD_TOKEN}}
run: npm run semantic-release
- name: Remove Build Directory
uses: EndBug/add-and-commit@v7
with:
remove: "--cached -r build"
message: "build: removed build directory from git"