Skip to content

feat: add Spectra project with detailed descriptions and technologies #14

feat: add Spectra project with detailed descriptions and technologies

feat: add Spectra project with detailed descriptions and technologies #14

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [ master ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
- name: Install Dependencies
run: npm install --legacy-peer-deps
- name: Build
run: npm run build
env:
CI: false
- name: Upload Pages Artifact
uses: actions/upload-pages-artifact@v1
with:
path: build
deploy:
needs: build
runs-on: ubuntu-latest
permissions:
pages: write
id-token: write
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v1