Some checks failed
Docker Cloud Build / Build & Publish Image (push) Has been cancelled
install.sh: detect RAM at runner install time and create swap only when needed (<2GB → 2G swap, 2-4GB → 1G swap, >4GB → no swap). workflow: detect RAM at build time and set NODE_OPTIONS accordingly (<2GB → 768MB, 2-4GB → 1536MB, >4GB → 3072MB). Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
90 lines
2.4 KiB
YAML
90 lines
2.4 KiB
YAML
name: Docker Cloud Build
|
|
|
|
on:
|
|
push:
|
|
branches: [ "master" ]
|
|
tags: [ 'v*.*.*' ]
|
|
paths:
|
|
- 'backend/**'
|
|
- 'frontend/**'
|
|
- 'docker/**'
|
|
- '.github/workflows/docker-publish.yml'
|
|
pull_request:
|
|
branches: [ "master" ]
|
|
paths:
|
|
- 'backend/**'
|
|
- 'frontend/**'
|
|
- 'docker/**'
|
|
- '.github/workflows/docker-publish.yml'
|
|
|
|
env:
|
|
REGISTRY: src.d3v.ac
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
jobs:
|
|
build:
|
|
name: Build & Publish Image
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Checkout repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Set up Node.js
|
|
uses: actions/setup-node@v4
|
|
with:
|
|
node-version: 20
|
|
|
|
- name: Install Frontend Dependencies & Build
|
|
run: |
|
|
total_ram_mb=$(awk '/MemTotal/ { printf "%d", $2/1024 }' /proc/meminfo)
|
|
if [ "$total_ram_mb" -lt 2048 ]; then
|
|
node_mem=768
|
|
elif [ "$total_ram_mb" -lt 4096 ]; then
|
|
node_mem=1536
|
|
else
|
|
node_mem=3072
|
|
fi
|
|
echo "RAM: ${total_ram_mb}MB — setting Node.js max to ${node_mem}MB"
|
|
export NODE_OPTIONS="--max-old-space-size=${node_mem}"
|
|
cd frontend
|
|
yarn install --frozen-lockfile
|
|
yarn locale-compile
|
|
yarn build
|
|
|
|
- name: Log into registry ${{ env.REGISTRY }}
|
|
if: github.event_name != 'pull_request'
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.FORGEJO_TOKEN }}
|
|
|
|
- name: Extract Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
tags: |
|
|
type=raw,value=latest,enable=${{ github.ref == 'refs/heads/master' }}
|
|
type=semver,pattern={{version}}
|
|
type=sha
|
|
|
|
- name: Build and push Docker image
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
file: docker/Dockerfile
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
platforms: linux/amd64
|