Revert demo change #115
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Sync tokens to Figma | |
on: | |
push: | |
branches: | |
- design-tokens | |
jobs: | |
sync-tokens-to-figma: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Install Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.18.0' | |
- name: Set NPM version | |
run: npm install -g [email protected] | |
- name: Clone repo | |
uses: actions/checkout@v3 | |
- name: Install dependencies | |
run: yarn install | |
working-directory: design-tokens | |
- name: Sync tokens to Figma file | |
run: yarn sync-tokens-to-figma | |
working-directory: design-tokens | |
env: | |
FILE_KEY: ${{ secrets.GH_ACTION_DEMO_FIGMA_FILE_KEY }} | |
PERSONAL_ACCESS_TOKEN: ${{ secrets.GH_ACTION_VARIABLES_SYNC_FIGMA_TOKEN }} |