Peter
c601f4168a
Some checks failed
act_runtime / build_images (node:20-bookworm-slim, ubuntu-latest) (push) Successful in 37s
act_runtime / build_images (node:20-bullseye-slim, ubuntu-latest) (push) Successful in 15s
act_runtime / build_images (node:20-bookworm-slim, ubuntu-latest-amd64) (push) Failing after 3m36s
Image builds / build-ente-images (photos) (push) Successful in 18s
Image builds / build-ente-images (cast) (push) Successful in 1m17s
Renovate / renovate (push) Successful in 33s
Image builds / build_images (renovate) (push) Successful in 3m9s
act_runtime / build_images (node:20-bullseye-slim, ubuntu-latest-amd64) (push) Successful in 6m31s
48 lines
No EOL
1.3 KiB
YAML
48 lines
No EOL
1.3 KiB
YAML
---
|
|
name: Image builds
|
|
on:
|
|
schedule:
|
|
- cron: "21 2 * * *"
|
|
push:
|
|
branches:
|
|
- main
|
|
paths:
|
|
- ".forgejo/workflows/ente.yaml"
|
|
- "ente/**"
|
|
|
|
jobs:
|
|
build-ente-images:
|
|
runs-on: ubuntu-latest
|
|
strategy:
|
|
matrix:
|
|
app:
|
|
- photos
|
|
- cast
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Login to Docker Hub
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: code.icb4dc0.de
|
|
username: prskr
|
|
password: ${{ secrets.CONTAINER_REGISTRY_TOKEN }}
|
|
|
|
- name: Fetch latest ente photos tag
|
|
run: |
|
|
echo "ENTE_PHOTOS_VERSION=$(gh release list -R ente-io/ente --exclude-pre-releases --exclude-drafts --jq '.[] | select(.tagName | startswith("photos")) | .tagName | sub("photos-";"")' --json 'tagName' --limit 10 | head -n 1)" >> "$GITHUB_ENV"
|
|
env:
|
|
GH_TOKEN: ${{ secrets.RENOVATE_GITHUB_TOKEN }}
|
|
|
|
- name: Build and push ente web
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: "./ente/web"
|
|
push: true
|
|
tags: code.icb4dc0.de/infrastructure/images/ente/${{ matrix.app }}:${{ env.ENTE_PHOTOS_VERSION }}
|
|
build-args: |
|
|
ENTE_BRANCH=photos-${{ env.ENTE_PHOTOS_VERSION }}
|
|
ENTE_APP=${{ matrix.app }} |