Skip to content

fix: setup swap in install.sh for low-memory systems using GHCR pulls #16

fix: setup swap in install.sh for low-memory systems using GHCR pulls

fix: setup swap in install.sh for low-memory systems using GHCR pulls #16

Workflow file for this run

name: Build Docker Images
on:
workflow_dispatch:
push:
branches: [main, staging]
env:
REGISTRY: ghcr.io
IMAGE_PREFIX: ghcr.io/suncuss
jobs:
build:
if: github.event.repository.visibility == 'public'
runs-on: ubuntu-24.04-arm
permissions:
contents: read
packages: write
strategy:
matrix:
include:
- context: ./backend
image: birdnet-pipy-backend
- context: ./frontend
image: birdnet-pipy-frontend
- context: ./deployment/audio
image: birdnet-pipy-icecast
steps:
- uses: actions/checkout@v4
- uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v6
with:
context: ${{ matrix.context }}
push: true
tags: ${{ env.IMAGE_PREFIX }}/${{ matrix.image }}:${{ github.ref_name }}
cache-from: type=gha,scope=${{ matrix.image }}
cache-to: type=gha,mode=max,scope=${{ matrix.image }}