Skip to content

UPDATE

UPDATE #3

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches:
- main # Change this to the branch you want to trigger the workflow on
jobs:
build:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Setup Node.js
uses: actions/setup-node@v2
with:
node-version: '14' # You can specify the Node.js version here
- name: Install dependencies
run: npm install
- name: Build project
run: npm run build
- name: Build project
run: cp public/templates.js dist/templates.js
- name: Setup Pages
uses: actions/configure-pages@v5
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
# Upload entire repository
path: 'dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4