From 5bebae3450de3a05b77bef369e35cc3546d95935 Mon Sep 17 00:00:00 2001 From: Owen Wertzberger Date: Fri, 11 Oct 2024 11:35:40 -0400 Subject: [PATCH] Update github_pages.yml --- .github/workflows/github_pages.yml | 49 +++++++++--------------------- 1 file changed, 15 insertions(+), 34 deletions(-) diff --git a/.github/workflows/github_pages.yml b/.github/workflows/github_pages.yml index 090dc06..1e695b2 100644 --- a/.github/workflows/github_pages.yml +++ b/.github/workflows/github_pages.yml @@ -1,40 +1,21 @@ -name: GitHub Pages - -on: - push: - branches: - - main - pull_request: - +name: Build and Deploy +on: [push] +permissions: + contents: write jobs: - deploy: + build-and-deploy: + concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession. runs-on: ubuntu-latest - permissions: - contents: write - concurrency: - group: ${{ github.workflow }}-${{ github.ref }} steps: - - uses: actions/checkout@v3 - - - name: Setup Node - uses: actions/setup-node@v3 - with: - node-version: '14' - - - name: Cache dependencies - uses: actions/cache@v3 - with: - path: ~/.npm - key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }} - restore-keys: | - ${{ runner.os }}-node- + - name: Checkout 🛎️ + uses: actions/checkout@v4 - - run: npm ci - - run: npm run build + - name: Install and Build 🔧 # This example project is built using npm and outputs the result to the 'build' folder. Replace with the commands required to build your project, or remove this step entirely if your site is pre-built. + run: | + npm ci + npm run build - - name: Deploy - uses: peaceiris/actions-gh-pages@v4 - if: github.ref == 'refs/heads/main' + - name: Deploy 🚀 + uses: JamesIves/github-pages-deploy-action@v4 with: - github_token: ${{ secrets.GITHUB_TOKEN }} - publish_dir: ./docs + folder: docs # The folder the action should deploy.