From 71ad27e21921f62b56c26f9ea36bf5a6e15d4156 Mon Sep 17 00:00:00 2001 From: njlyon0 Date: Wed, 17 Jan 2024 11:01:37 -0500 Subject: [PATCH] New attempt at setting up GitHub action --- .github/workflows/publish.yml | 25 +++++++++++++++++++++++++ .nojekyll | 0 2 files changed, 25 insertions(+) create mode 100644 .github/workflows/publish.yml create mode 100644 .nojekyll diff --git a/.github/workflows/publish.yml b/.github/workflows/publish.yml new file mode 100644 index 0000000..77d7fc0 --- /dev/null +++ b/.github/workflows/publish.yml @@ -0,0 +1,25 @@ +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@v3 + + - name: Set up Quarto + uses: quarto-dev/quarto-actions/setup@v2 + + - 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 diff --git a/.nojekyll b/.nojekyll new file mode 100644 index 0000000..e69de29