Skip to content

Update .gitignore

Update .gitignore #7

Workflow file for this run

name: Release CI
on:
push:
branches: [ "main" ]
jobs:
release:
environment: release
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- name: git config
run: |
git config user.name "${GITHUB_ACTOR}"
git config user.email "${GITHUB_ACTOR}@users.noreply.github.com"
- run: yarn
- run: npm config set //registry.npmjs.org/:_authToken $NPM_TOKEN
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
- run: npm run release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- run: npx chromatic --project-token="${CHROMATIC_TOKEN}"
env:
CHROMATIC_TOKEN: ${{ secrets.CHROMATIC_TOKEN }}