Better avoidance of a force-dark function #206
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
# This action builds and deploys PR-versions of the website. | |
# This aids in testing PR contents. | |
name: PR preview build | |
concurrency: preview-${{ github.ref }} | |
on: | |
pull_request: | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- closed | |
jobs: | |
deploy-pr-preview: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Build the website | |
uses: ./.github/actions/build-website | |
- name: Deploy | |
uses: rossjrw/pr-preview-action@v1 | |
with: | |
source-dir: . | |
umbrella-dir: pr |