From a1587d404170e54b3a0f62df4d802f7043c82eff Mon Sep 17 00:00:00 2001 From: humoroussmile <77305282+humoroussmile@users.noreply.github.com> Date: Sat, 20 Jul 2024 17:40:30 -0600 Subject: [PATCH] remove yml --- .github/workflows/quarto-render.yml | 48 ----------------------------- 1 file changed, 48 deletions(-) delete mode 100644 .github/workflows/quarto-render.yml diff --git a/.github/workflows/quarto-render.yml b/.github/workflows/quarto-render.yml deleted file mode 100644 index 3fc7043..0000000 --- a/.github/workflows/quarto-render.yml +++ /dev/null @@ -1,48 +0,0 @@ -on: - push: - branches: main - -name: Render book to html - -jobs: - build-deploy: - runs-on: ubuntu-latest - steps: - - name: Check out repository - uses: actions/checkout@v3 - - - name: Set up Quarto - uses: quarto-dev/quarto-actions/setup@v2 - with: - version: 1.2.280 - - - name: Install R - uses: r-lib/actions/setup-r@v2 - with: - r-version: '4.2.0' # The R version to download (if necessary) and use. - - - name: Setup renv and restore project deps - uses: r-lib/actions/setup-renv@v2 - with: - cache-version: 1 - - - name: Render book to html - run: quarto render - - - name: Add files and commit - run: | - git config --global user.email "<>" - git config --global user.name "GitHub Actions bot" - git status - git add -A - git status - git commit -m "render book to html" - git status - - - name: Deploy to netlify branch - uses: s0/git-publish-subdir-action@develop - env: - REPO: self - BRANCH: netlify - FOLDER: _book - GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}