From 1598cf19512945218f2a23a8e9494f10f980cabd Mon Sep 17 00:00:00 2001 From: Wilson Freitas Date: Sun, 18 Feb 2024 00:17:22 -0300 Subject: [PATCH] Changed deploy to peaceiris --- .github/workflows/build.yml | 15 +++++++++------ 1 file changed, 9 insertions(+), 6 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 4c805fb..8c85c75 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -2,7 +2,7 @@ name: Update site on: schedule: - - cron: "* 0 * * *" + - cron: "* 1 * * *" push: branches: [ master ] @@ -37,9 +37,12 @@ jobs: uses: quarto-dev/quarto-actions/setup@v2 with: version: 1.4.550 - - name: Publish to GitHub Pages (and render) - uses: quarto-dev/quarto-actions/publish@v2 + - name: Render site + uses: quarto-dev/quarto-actions/render@v2 with: - target: gh-pages - render: true - path: "site" + path: site + - name: Deploy pages + uses: peaceiris/actions-gh-pages@v3 + with: + github_token: ${{ secrets.GITHUB_TOKEN }} + publish_dir: site/docs \ No newline at end of file