From 62457369a847da46be10ed3ace2a68c38b2cc17b Mon Sep 17 00:00:00 2001 From: robinlovelace Date: Tue, 23 Jul 2024 08:46:55 +0100 Subject: [PATCH 1/2] Duplicate publish.yml (#9) --- .github/workflows/pr.yml | 35 +++++++++++++++++++++++++++++++++++ 1 file changed, 35 insertions(+) create mode 100644 .github/workflows/pr.yml diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml new file mode 100644 index 0000000..525da4a --- /dev/null +++ b/.github/workflows/pr.yml @@ -0,0 +1,35 @@ +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: Install R + uses: r-lib/actions/setup-r@v2 + with: + r-version: '4.4.1' + + - 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 + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file From 261d1361021659594eb7c7d8d9a766689b8bb688 Mon Sep 17 00:00:00 2001 From: robinlovelace Date: Tue, 23 Jul 2024 08:47:54 +0100 Subject: [PATCH 2/2] Update pr.yml, close #9 --- .github/workflows/pr.yml | 21 +++++++-------------- 1 file changed, 7 insertions(+), 14 deletions(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index 525da4a..91ec035 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -1,15 +1,12 @@ -on: - workflow_dispatch: - push: - branches: main +name: Pull Request Checks -name: Quarto Publish +on: + pull_request: + branches: [main] jobs: - build-deploy: + build-check: runs-on: ubuntu-latest - permissions: - contents: write steps: - name: Check out repository uses: actions/checkout@v4 @@ -27,9 +24,5 @@ jobs: with: cache-version: 1 - - name: Render and Publish - uses: quarto-dev/quarto-actions/publish@v2 - with: - target: gh-pages - env: - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} \ No newline at end of file + - name: Build Quarto Project + run: quarto render \ No newline at end of file