Merge notebooks build with publish action #59
This file contains hidden or 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 | |
- name: Fix Timestamps | |
run: bash .github/scripts/fix-timestamps | |
- name: Quarto Render | |
uses: quarto-dev/quarto-actions/render@v2 | |
- name: Deploy PR Preview | |
uses: rossjrw/pr-preview-action@v1.6.1 | |
with: | |
source-dir: ./_output/ | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |