Fix calc typo #3098
Workflow file for this run
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: Deploy | |
on: | |
pull_request: | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
deployments: write | |
issues: write | |
statuses: write | |
checks: write | |
jobs: | |
deploy: | |
if: ${{ github.repository == 'primer/css' }} | |
uses: primer/.github/.github/workflows/deploy_preview.yml@v2.1.0 | |
name: Deploy preview | |
secrets: | |
gh_token: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
node_version: 20 | |
install: npm i && cd docs && npm i && cd .. | |
build: npm run build:docs:preview | |
output_dir: docs/public | |
deploy-storybook: | |
if: ${{ github.repository == 'primer/css' }} | |
name: Preview Storybook | |
runs-on: ubuntu-latest | |
needs: deploy | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: chrnorm/deployment-action@v2.0.7 | |
name: Create GitHub deployment for storybook | |
id: storybook | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
environment: Storybook Preview | |
environment_url: '${{ needs.deploy.outputs.deployment_url }}/storybook' | |
- name: Update storybook deployment status (success) | |
if: success() | |
uses: chrnorm/deployment-status@v2.0.3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
environment-url: '${{ needs.deploy.outputs.deployment_url }}/storybook' | |
state: 'success' | |
deployment-id: ${{ steps.storybook.outputs.deployment_id }} | |
- name: Update storybook deployment status (failure) | |
if: failure() | |
uses: chrnorm/deployment-status@v2.0.3 | |
with: | |
token: ${{ secrets.GITHUB_TOKEN }} | |
state: 'failure' | |
deployment-id: ${{ steps.storybook.outputs.deployment_id }} |