Skip to content

Commit

Permalink
Merge pull request #371 from chromaui/steven/secrets-capitalized
Browse files Browse the repository at this point in the history
Secrets capitalized
  • Loading branch information
winkerVSbecks authored Feb 16, 2024
2 parents 1f0decc + b92fb77 commit 53aa68d
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions src/content/configuration/cypress.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -112,15 +112,15 @@ Use the GitHub Action with the `cypress` flag to run a build.
uses: chromaui/action@latest
with:
cypress: true
projectToken: ${{ secrets.chromaticProjectToken }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}

# With env vars

- name: Publish to Chromatic
uses: chromaui/action@latest
with:
cypress: true
projectToken: ${{ secrets.chromaticProjectToken }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
env:
CHROMATIC_ARCHIVE_LOCATION=./custom/dir
```
Expand Down
4 changes: 2 additions & 2 deletions src/content/configuration/playwright.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -126,15 +126,15 @@ Use the GitHub Action with the `playwright` flag to run a build.
uses: chromaui/action@latest
with:
playwright: true
projectToken: ${{ secrets.chromaticProjectToken }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}

# With env vars

- name: Publish to Chromatic
uses: chromaui/action@latest
with:
playwright: true
projectToken: ${{ secrets.chromaticProjectToken }}
projectToken: ${{ secrets.CHROMATIC_PROJECT_TOKEN }}
env:
CHROMATIC_ARCHIVE_LOCATION=./custom/dir
```
Expand Down

1 comment on commit 53aa68d

@github-actions
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Please sign in to comment.