Skip to content

- Update sources

- Update sources #2

Workflow file for this run

name: nebulae CI/CD
on:
push:
branches: [ ci-*, main ]
pull_request:
branches: [ main ]
jobs:
build-pwa:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20
cache: 'pnpm'
- name: Install Dependencies and Build
run: |
pnpm i
DEPLOY_GITHUB_PAGE=true pnpm run build
- name: Deploy to GitHub Pages
uses: crazy-max/ghaction-github-pages@v4
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
build_dir: dist/pwa
keep_history: false
target_branch: gh-pages