mirror of
https://github.com/netbirdio/docs.git
synced 2026-08-25 09:11:26 +02:00
Move `npm run build` out of the Docker image onto the runner, where actions/cache persists .next/cache across runs (the in-Docker build discarded it every time). The image now just packages the prebuilt .next and serves it with `next start`; runtime and the DocSearch entrypoint injection are unchanged. Also: checkout full history (fetch-depth: 0) so per-page dates are correct, guard buildGitDateMap against shallow clones (correct-or-absent, never wrong), modernise the Docker actions (build-push-action v6, provenance: false), and add a path-filtered pull_request trigger so pipeline changes are validated before merge. Smoke-tested via isolated build + docker run: serves /, /introduction, /api, sitemap, static assets (200); DocSearch placeholder injection intact.
69 lines
2.0 KiB
YAML
69 lines
2.0 KiB
YAML
name: docs site build and push
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
# Build-only (no push) on PRs that touch the build/deploy pipeline, so
|
|
# Dockerfile / workflow changes are validated before they reach main.
|
|
pull_request:
|
|
paths:
|
|
- 'docker/**'
|
|
- '.github/workflows/build_n_push.yml'
|
|
- 'next.config.mjs'
|
|
- 'package-lock.json'
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
docs_build_n_push:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
# Full history so gen:last-updated / gen:sitemap can read real
|
|
# per-file commit dates (a shallow clone would yield wrong dates).
|
|
fetch-depth: 0
|
|
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version: '20'
|
|
cache: 'npm'
|
|
|
|
- name: Install dependencies
|
|
run: npm ci
|
|
|
|
- name: Restore Next.js build cache
|
|
uses: actions/cache@v4
|
|
with:
|
|
path: .next/cache
|
|
key: ${{ runner.os }}-nextjs-${{ hashFiles('package-lock.json') }}-${{ hashFiles('src/**', 'mdx/**', 'next.config.mjs') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-nextjs-${{ hashFiles('package-lock.json') }}-
|
|
|
|
- name: Build
|
|
run: npm run build
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: netbirdio/docs.netbird.io
|
|
|
|
- name: Login to DockerHub
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USER }}
|
|
password: ${{ secrets.DOCKER_TOKEN }}
|
|
|
|
- name: Docker build and push
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: docker/Dockerfile
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
# Keep a single-arch manifest (no attestation index) so the server's
|
|
# `docker compose pull` stays happy.
|
|
provenance: false
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|