Skip to content

Commit

Permalink
Update github_pages.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
wheelsbot7 authored Oct 11, 2024
1 parent 5bebae3 commit 01b4e41
Showing 1 changed file with 35 additions and 16 deletions.
51 changes: 35 additions & 16 deletions .github/workflows/github_pages.yml
Original file line number Diff line number Diff line change
@@ -1,21 +1,40 @@
name: Build and Deploy
on: [push]
permissions:
contents: write
name: GitHub Pages

on:
push:
branches:
- main
pull_request:

jobs:
build-and-deploy:
concurrency: ci-${{ github.ref }} # Recommended if you intend to make multiple deployments in quick succession.
runs-on: ubuntu-latest
deploy:
runs-on: ubuntu-22.04
permissions:
contents: write
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
steps:
- name: Checkout 🛎️
uses: actions/checkout@v4
- 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: 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
- run: npm ci
- run: npm run build

- name: Deploy 🚀
uses: JamesIves/github-pages-deploy-action@v4
- name: Deploy
uses: peaceiris/actions-gh-pages@v4
if: github.ref == 'refs/heads/main'
with:
folder: docs # The folder the action should deploy.
github_token: ${{ secrets.GITHUB_TOKEN }}
publish_dir: ./docs

0 comments on commit 01b4e41

Please sign in to comment.