26 lines
630 B
YAML
26 lines
630 B
YAML
name: Upload to PageUp (NoName Pages)
|
|
|
|
on: workflow_dispatch
|
|
|
|
# This is an edid of what tags wrote for wcv3 with parts of nonamesoftlander by me
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
name: Checkout code
|
|
|
|
- name: Setup Node.JS
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 22
|
|
|
|
- name: Install Dependencies
|
|
run: npm ci
|
|
|
|
- name: Build site
|
|
run: npm run build
|
|
|
|
- name: Deploy to PageUp
|
|
uses: https://hazzy.nonamesoft.xyz/nna/deploy-pageup@v1 # or specific "vX.X.X" version tag for this action |