schmelczer-dev/.forgejo/workflows/deploy.yml
Andras Schmelczer 48aa046356
All checks were successful
Deploy to Pages / build (pull_request) Successful in 3m16s
Adopt shared ci-actions for publishing
Replace the inline publish step(s) with the canonical shell-only composite
actions in andras/ci-actions (deploy-pages / docker-publish / forgejo-release).

Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
2026-06-06 14:58:35 +01:00

58 lines
1.3 KiB
YAML

name: Deploy to Pages
on:
push:
branches: ['main']
pull_request:
branches: ['main']
workflow_dispatch:
concurrency:
group: 'pages'
cancel-in-progress: false
jobs:
build:
runs-on: docker
steps:
- uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: '.nvmrc'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Lint
run: |
npm run lint
git diff
if [[ `git status --porcelain` ]]; then
exit 1
fi
- name: Typecheck
run: npm run typecheck
- name: Build, Astro Audit & QA
run: |
npx playwright install chromium
npm run qa
- name: Copy build to host pages mount
if: github.event_name == 'push' && github.ref == 'refs/heads/main'
uses: http://forgejo:3000/andras/ci-actions/deploy-pages@main
with:
source: dist
target: schmelczer-dev
- name: Copy build to staging pages mount
if: github.event_name == 'pull_request'
uses: http://forgejo:3000/andras/ci-actions/deploy-pages@main
with:
source: dist
target: schmelczer-dev-staging