Skip to content

feat: migrate packages #44

feat: migrate packages

feat: migrate packages #44

Workflow file for this run

name: Deploy to GitHub Pages
on:
push:
branches: [main]
permissions:
contents: read
pages: write
id-token: write
concurrency:
group: "pages"
cancel-in-progress: false
jobs:
build:
runs-on: ubuntu-latest
env:
NEXT_PUBLIC_BASE_PATH: /Game-of-Life
steps:
- name: Get files
uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
- uses: pnpm/action-setup@v2.1.0
with:
version: latest
- name: Install Dependencies
run: |
sudo apt update
sudo apt install -y build-essential libxi-dev libglu1-mesa-dev libglew-dev pkg-config
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install packages
run: pnpm install
- name: Build and export project
run: pnpm build && pnpm export
- name: Add .nojekyll file
run: touch ./build/.nojekyll
- name: Upload artifact
uses: actions/upload-pages-artifact@v1
with:
path: ./build
deploy:
environment:
name: github-pages
url: ${{ steps.deployment.outputs.page_url }}
runs-on: ubuntu-latest
needs: build
steps:
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v2