mirror of
https://github.com/actualbudget/actual.git
synced 2026-07-11 11:59:55 -05:00
* [AI] Migrate CI workflows to Depot-managed runners Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Rename release notes to match PR number Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Empty commit to trigger CI Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Keep VRT jobs on GitHub-hosted runners Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Use 4-vCPU Depot Windows runners for Electron builds Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Use 4-vCPU Depot Ubuntu runners for Electron builds Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Use 4-vCPU Depot runners for functional e2e tests Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Scale Electron build runners to 8 vCPUs Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Scale Ubuntu Electron builds to 4 vCPUs and move Windows builds back to GitHub runners Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Move Microsoft Store publish back to GitHub Windows runner Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> * [AI] Add actionlint config for Depot runner labels Co-Authored-By: Claude Fable 5 <noreply@anthropic.com> --------- Co-authored-by: Claude Fable 5 <noreply@anthropic.com> Co-authored-by: Cursor Agent <cursoragent@cursor.com> Co-authored-by: Matiss Janis Aboltins <MatissJanis@users.noreply.github.com>
118 lines
4.2 KiB
YAML
118 lines
4.2 KiB
YAML
name: Build Nightly Docker Image
|
|
|
|
# Nightly Docker images are built for every push to master
|
|
on:
|
|
push:
|
|
branches:
|
|
- master
|
|
workflow_dispatch:
|
|
|
|
concurrency:
|
|
group: docker-nightly-build
|
|
cancel-in-progress: true
|
|
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
|
|
env:
|
|
IMAGES: |
|
|
${{ !github.event.repository.fork && 'actualbudget/actual-server' || '' }}
|
|
ghcr.io/${{ github.repository_owner }}/actual-server
|
|
ghcr.io/${{ github.repository_owner }}/actual
|
|
|
|
# Creates the following tags:
|
|
# - actual-server:nightly
|
|
# - actual-server:edge (kept for backwards compatibility)
|
|
TAGS: |
|
|
type=raw,value=nightly,enable={{is_default_branch}}
|
|
type=raw,value=edge,enable={{is_default_branch}}
|
|
type=sha
|
|
|
|
jobs:
|
|
build:
|
|
if: github.event_name == 'workflow_dispatch' || !github.event.repository.fork
|
|
name: Build Docker image
|
|
runs-on: depot-ubuntu-latest
|
|
environment: release
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu, alpine]
|
|
steps:
|
|
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@ce360397dd3f832beb865e1373c09c0e9f86d70a # v4.0.0
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@4d04d5d9486b7bd6fa91e7baf45bbb4f8b9deedd # v4.0.0
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@030e881283bb7a6894de51c315a6bfe6a94e05cf # v6.0.0
|
|
with:
|
|
# Push to both Docker Hub and Github Container Registry
|
|
images: ${{ env.IMAGES }}
|
|
flavor: ${{ matrix.os != 'ubuntu' && format('suffix=-{0}', matrix.os) || '' }}
|
|
tags: ${{ env.TAGS }}
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
|
|
if: github.event_name != 'pull_request' && !github.event.repository.fork
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
uses: docker/login-action@4907a6ddec9925e35a0a9e82d7399ccc52663121 # v4.1.0
|
|
if: github.event_name != 'pull_request'
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
# Building outside of the docker image allows us to build once and push to multiple platforms
|
|
# This is faster and avoids yarn memory issues
|
|
- name: Set up environment
|
|
uses: ./.github/actions/setup
|
|
with:
|
|
# Avoid restoring potentially poisoned caches in release jobs.
|
|
cache: 'false'
|
|
- name: Build Web
|
|
run: yarn build:server
|
|
|
|
- name: Build image for testing
|
|
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
|
|
with:
|
|
context: .
|
|
push: false
|
|
load: true
|
|
file: packages/sync-server/docker/${{ matrix.os }}.Dockerfile
|
|
tags: actualbudget/actual-server-testing
|
|
|
|
- name: Test that the docker image boots
|
|
timeout-minutes: 1
|
|
run: |
|
|
docker run --detach --network=host --name actual-server actualbudget/actual-server-testing
|
|
HEALTHCMD=$(yq -r '.services.actual_server.healthcheck.test[1]' packages/sync-server/docker-compose.yml)
|
|
until docker exec actual-server sh -c "$HEALTHCMD"; do sleep 1; done
|
|
|
|
- name: Dump container logs on failure
|
|
if: failure()
|
|
run: docker logs actual-server || true
|
|
|
|
# This will use the cache from the earlier build step and not rebuild the image
|
|
# https://docs.docker.com/build/ci/github-actions/test-before-push/
|
|
- name: Build and push images
|
|
uses: docker/build-push-action@bcafcacb16a39f128d818304e6c9c0c18556b85f # v7.1.0
|
|
with:
|
|
context: .
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
file: packages/sync-server/docker/${{ matrix.os }}.Dockerfile
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7${{ matrix.os == 'alpine' && ',linux/arm/v6' || '' }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
build-args: |
|
|
GITHUB_TOKEN=${{ secrets.GITHUB_TOKEN }}
|