Skip to content

Create Figma.gs

Create Figma.gs #195

Workflow file for this run

on: [pull_request, workflow_dispatch]
name: Update dist folder
jobs:
update-dist-src:
if: "${{ contains(github.event.pull_request.labels.*.name, 'autorelease: pending') }}"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
ref: ${{ github.event.pull_request.head.ref }}
token: ${{ secrets.GOOGLEWORKSPACE_BOT_TOKEN }}
- uses: actions/setup-node@v1
with:
node-version: 16
- name: Install dependencies
run: npm ci
- name: Update dist and doc folders
run: |
npm run dist
npm run doc
- uses: stefanzweifel/git-auto-commit-action@v4
with:
commit_message: "chore: Update dist/ and docs/ directories"
commit_user_name: Google Workspace Bot
commit_user_email: [email protected]
commit_author: Google Workspace Bot <[email protected]>