Skip to content

Commit

Permalink
Update main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
hughred22 authored Feb 24, 2024
1 parent 1dea8aa commit c91745e
Showing 1 changed file with 42 additions and 29 deletions.
71 changes: 42 additions & 29 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -1,38 +1,51 @@
name: Build and deploy main
# Simple workflow for deploying static content to GitHub Pages
name: Deploy static content to Pages

on:
# Runs on pushes targeting the default branch
push:
branches: [main]
branches: ['main']

jobs:
build:
name: Build and deploy main
runs-on: ubuntu-latest
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:

steps:
- uses: actions/checkout@v2
- uses: actions/[email protected]

- name: Cache node modules
uses: actions/cache@v2
with:
path: ~/node_modules
key: cache-${{ hashFiles('**/package-lock.json') }}
# Sets the GITHUB_TOKEN permissions to allow deployment to GitHub Pages
permissions:
contents: read
pages: write
id-token: write

# pass --base for application to work under GitHub pages
- name: Install and build
run: |
npm install
npm run build -- --base=/${{ github.event.repository.name }}/
# Allow one concurrent deployment
concurrency:
group: 'pages'
cancel-in-progress: true

- name: Deploy to github pages
uses: JamesIves/[email protected]
jobs:
# Single deploy job since we're just deploying
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Node
uses: actions/setup-node@v3
with:
branch: gh-pages
folder: dist

- name: Publish deployed code
uses: actions/upload-artifact@v2
node-version: 18
cache: 'npm'
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Setup Pages
uses: actions/configure-pages@v3
- name: Upload artifact
uses: actions/upload-pages-artifact@v2
with:
name: published
path: dist
# Upload dist repository
path: './dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2

0 comments on commit c91745e

Please sign in to comment.