Downgrade the Quarto Version to 1.3.450 to fixed the bug: include-cod… #64
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: Build Book | ||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- main | ||
jobs: | ||
build: | ||
name: Build | ||
runs-on: ubuntu-latest | ||
env: | ||
MY_SECRET : ${{secrets.GH_ACCESS_TOKEN}} | ||
steps: | ||
- name: Setup Quarto | ||
uses: quarto-dev/quarto-actions/setup@v2 | ||
with: | ||
Check failure on line 19 in .github/workflows/check.yml GitHub Actions / Build BookInvalid workflow file
|
||
version: 1.3.450 | ||
- name: Checkout main source | ||
uses: actions/checkout@v4 | ||
- name: Install Quarto Extensions | ||
working-directory: ${{ github.workspace }} | ||
run: | | ||
quarto add --no-prompt quarto-ext/include-code-files | ||
quarto install --no-prompt tinytex | ||
- name: Render and Publish | ||
run: | | ||
quarto render |