websites/.gitea/workflows/workflow.yaml
Dominik Milacher 65d39aaee9
All checks were successful
Build and deploy updated apps / build (push) Successful in 53s
Bump
2025-06-13 18:58:48 +02:00

35 lines
703 B
YAML

name: Build and deploy updated apps
on:
push:
branches: [ main ]
pull_request:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: https://github.com/actions/checkout@v4
with:
fetch-depth: 2
- uses: https://github.com/actions/setup-node@v4
with:
node-version: 22
- uses: https://github.com/pnpm/action-setup@v3
with:
version: 9
run_install: false
cache: true
- name: Install
run: pnpm install --frozen-lockfile
- name: Build only changed sites
run: |
pnpm turbo run build \
--filter="{./apps/*}...[HEAD^1]" \
--concurrency=1