Endrer fra å bruke generisk github token til app token for å trigge f… #153
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
# .github/workflows/chromatic.yml | |
# Workflow name | |
name: "Chromatic" | |
# Event for the workflow | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
types: [labeled] | |
# List of jobs | |
jobs: | |
chromatic-deployment: | |
# Operating System | |
runs-on: ubuntu-latest | |
# Job steps | |
steps: | |
- uses: actions/checkout@v1 | |
- name: Install dependencies | |
run: npm ci | |
# Chromatic | |
- name: Publish to Chromatic | |
uses: chromaui/action@v1 | |
# Chromatic GitHub Action options | |
if: (contains(github.event.pull_request.labels.*.name, 'chromatic') || github.ref == 'refs/heads/master') | |
with: | |
workingDir: ./apps/storybook | |
# 👇 Chromatic projectToken, refer to the manage page to obtain it. | |
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }} | |
onlyChanged: true |