From f8e7d27f6f8bcbe247c0f30e981b7d10f53a2d57 Mon Sep 17 00:00:00 2001 From: Jasmine Daly Date: Sun, 27 Oct 2024 16:42:38 -0400 Subject: [PATCH] update publish2.yml now that the path: website is not needed --- .github/workflows/publish2.yml | 17 ----------------- 1 file changed, 17 deletions(-) diff --git a/.github/workflows/publish2.yml b/.github/workflows/publish2.yml index eecf8dd..e82eb7b 100644 --- a/.github/workflows/publish2.yml +++ b/.github/workflows/publish2.yml @@ -5,11 +5,6 @@ on: name: Quarto Publish -# you need these permissions to publish to GitHub pages -permissions: - contents: write - pages: write - jobs: build-deploy: runs-on: ubuntu-latest @@ -22,21 +17,9 @@ jobs: - name: Set up Quarto uses: quarto-dev/quarto-actions/setup@v2 - - name: Install R - uses: r-lib/actions/setup-r@v2 - with: - r-version: '4.2.0' - - - name: Install R Dependencies - uses: r-lib/actions/setup-renv@v2 - with: - cache-version: 1 - - name: Render and Publish uses: quarto-dev/quarto-actions/publish@v2 with: target: gh-pages - path: website - render: false env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}