Skip to content

Merge pull request #172 from jinshuju/figma-update-1702878918272 #147

Merge pull request #172 from jinshuju/figma-update-1702878918272

Merge pull request #172 from jinshuju/figma-update-1702878918272 #147

Workflow file for this run

name: icon-automation
on:
push:
branches:
- master
# file paths to consider in the event. Optional; defaults to all.
paths:
- package.json
jobs:
icon_automation:
name: figma icon automation
runs-on: ubuntu-latest
steps:
- run: echo "${{ secrets.FIGMA_FILE_URL }}"
- run: echo "${{ secrets.FIGMA_TOKEN }}"
- run: echo "${{ secrets.NPM_AUTH_TOKEN }}"
- run: echo "${{ secrets.GH_TOKEN }}"
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: '10.x'
- run: yarn install
- name: Figma Action
uses: primer/[email protected]
with:
args: "format=svg outputDir=./src/"
env:
FIGMA_FILE_URL: ${{ secrets.FIGMA_FILE_URL }}
FIGMA_TOKEN: ${{ secrets.FIGMA_TOKEN }}
- run: yarn generate
- run: yarn build:bundle
- run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_AUTH_TOKEN }}" > ~/.npmrc
- run: yarn publish --access public
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_AUTH_TOKEN }}
- run: yarn build
- name: GitHub Pages
uses: crazy-max/[email protected]
with:
build_dir: docs
env:
GITHUB_TOKEN: ${{ secrets.GH_TOKEN }}