Wechsel auf ein Basis-Image mit Node

This commit is contained in:
2026-05-29 00:26:31 +02:00
parent 69e9e9ac12
commit e8dc08a4b9
+3 -4
View File
@@ -9,14 +9,13 @@ jobs:
build-flatpak:
runs-on: ubuntu-latest
container:
image: ubuntu:22.04
# Wir nutzen ein offizielles Node.js Image, damit Gitea Actions (die Node benötigen) fehlerfrei laufen
image: node:20-bookworm
steps:
- name: Install dependencies
run: |
apt-get update
apt-get install -y curl ca-certificates
curl -fsSL https://deb.nodesource.com/setup_20.x | bash -
apt-get install -y nodejs jq sed flatpak flatpak-builder ostree git binutils xz-utils zstd
apt-get install -y curl ca-certificates jq sed flatpak flatpak-builder ostree git binutils xz-utils zstd
- name: Checkout repository
uses: actions/checkout@v4