Add Kerr nonlinearity tutorial #12
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: Quarto PR preview | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- opened | |
- reopened | |
- synchronize | |
- ready_for_review | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
actions: write # needed to allow julia-actions/cache to delete old caches that it has created | |
contents: write # needed for Quarto render | |
pull-requests: write # for GitHub action bot to write messages | |
if: ${{ !github.event.pull_request.draft }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Quarto | |
uses: quarto-dev/quarto-actions/setup@v2 | |
- uses: julia-actions/setup-julia@v2 | |
with: | |
version: '1' | |
- uses: julia-actions/cache@v2 | |
- uses: julia-actions/julia-buildpkg@v1 | |
with: | |
precompile: true | |
- uses: cardinalby/export-env-action@v2 | |
with: | |
envFile: '_environment' | |
expand: 'true' | |
- name: Quarto Render | |
uses: quarto-dev/quarto-actions/render@v2 | |
with: | |
to: html | |
- name: Deploy PR Preview | |
uses: rossjrw/pr-preview-action@v1.4.8 | |
with: | |
source-dir: ./_output/ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |