diff --git a/.forgejo/workflows/build-appimage.yml b/.forgejo/workflows/build-appimage.yml index 9ba996e..f8db0a1 100644 --- a/.forgejo/workflows/build-appimage.yml +++ b/.forgejo/workflows/build-appimage.yml @@ -15,7 +15,7 @@ jobs: runs-on: docker if: contains(github.event.head_commit.message, '[appimage]') || startsWith(github.ref, 'refs/tags/v') container: - image: ghcr.io/aspect-build/rust:stable-node22-bookworm + image: rust:1.83-bookworm steps: - name: Checkout @@ -23,6 +23,11 @@ jobs: git clone --depth 1 --branch "${GITHUB_REF_NAME}" \ "https://oauth2:${{ secrets.REGISTRY_TOKEN }}@git.data-it-solution.de/${GITHUB_REPOSITORY}.git" . + - name: Install Node.js + run: | + curl -fsSL https://deb.nodesource.com/setup_22.x | bash - + apt-get install -y nodejs + - name: Install System Dependencies run: | apt-get update @@ -34,7 +39,8 @@ jobs: libssl-dev \ libgtk-3-dev \ libayatana-appindicator3-dev \ - file + file \ + wget - name: Install npm packages run: npm ci