Skip to content

refactor: recompose BackgroundMaterial shader logic #10

refactor: recompose BackgroundMaterial shader logic

refactor: recompose BackgroundMaterial shader logic #10

Workflow file for this run

name: Deploy
on:
workflow_dispatch:
push:
branches:
- "main"
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.sha }}-${{ github.event_name }}
cancel-in-progress: true
defaults:
run:
shell: bash
permissions:
contents: read
pages: write
id-token: write
jobs:
build_and_push:
runs-on: ubuntu-latest
name: Build and publish
steps:
- name: "Fetch all required Git history"
uses: actions/checkout@v4
with:
fetch-depth: 2
- name: Setup PNPM
uses: pnpm/action-setup@v4
with:
package_json_file: package.json
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version-file: package.json
cache: pnpm
cache-dependency-path: pnpm-lock.yaml
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Build application
run: pnpm run build:prod
- name: Setup GitHub Pages
uses: actions/configure-pages@v5
- name: Upload static files
uses: actions/upload-pages-artifact@v3
with:
path: "dist/application/browser"
- name: Deploy to GitHub Pages
id: deployment
uses: actions/deploy-pages@v4