Merge pull request #7 from 522451661/figma-update-1722928908587 #5
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: 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: | |
- uses: actions/checkout@v1 | |
- uses: actions/setup-node@v1 | |
with: | |
node-version: '10.x' | |
- run: yarn config set strict-ssl false | |
- 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 | |
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 }} |