Thanks to visit codestin.com
Credit goes to Github.com

Skip to content

updated

updated #69

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ main ]
paths: [ 'Boxology-Interface/**' ]
workflow_dispatch:
permissions:
contents: read
pages: write
id-token: write
jobs:
deploy:
runs-on: ubuntu-latest
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '18'
cache: 'npm'
cache-dependency-path: 'Boxology-Interface/package-lock.json'
- name: Install dependencies
run: |
cd Boxology-Interface
npm ci
- name: Build
run: |
cd Boxology-Interface
npm run build
- name: Setup Pages
uses: actions/configure-pages@v4
- name: Upload artifact
uses: actions/upload-pages-artifact@v3
with:
path: './Boxology-Interface/dist'
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4