Skip to content

ci: make it without defaults #16

ci: make it without defaults

ci: make it without defaults #16

Workflow file for this run

on:
workflow_dispatch:
push:
branches: main
name: Quarto Publish
jobs:
build-deploy:
runs-on: ubuntu-latest
permissions:
contents: write
steps:
- name: Check out repository
uses: actions/checkout@v4
# - name: Set up Quarto
# uses: quarto-dev/quarto-actions/setup@v2
- name: Set up PDM
uses: pdm-project/setup-pdm@v4
- name: Install dependencies
run: |
pdm install
pdm run quarto publish --no-browser
with:

Check failure on line 27 in .github/workflows/publish.yml

View workflow run for this annotation

GitHub Actions / Quarto Publish

Invalid workflow file

The workflow is not valid. .github/workflows/publish.yml (Line: 27, Col: 9): Unexpected value 'with'
target: gh-pages
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
# - name: Render and Publish
# uses: quarto-dev/quarto-actions/publish@v2
# with:
# target: gh-pages
# env:
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}