From 7ee321171a2b12136f709504aa54b2a2de2368ad Mon Sep 17 00:00:00 2001 From: Ade9 Date: Mon, 2 Mar 2026 16:05:37 +0200 Subject: [PATCH] workflow.. --- .forgejo/workflows/release.yaml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.forgejo/workflows/release.yaml b/.forgejo/workflows/release.yaml index 00cfdfb..6adf326 100644 --- a/.forgejo/workflows/release.yaml +++ b/.forgejo/workflows/release.yaml @@ -11,10 +11,12 @@ env: jobs: export-windows: name: Windows Export - runs-on: docker # Use 24.04 with godot 4 + runs-on: ubuntu-latest # Use 24.04 with godot 4 container: image: barichello/godot-ci:mono-4.6.1 steps: + - name: apt + run: apt-get update && apt-get install -y nodejs npm - name: Checkout uses: actions/checkout@v4 with: @@ -39,10 +41,12 @@ jobs: export-linux: name: Linux Export - runs-on: docker # Use 24.04 with godot 4 + runs-on: ubuntu-latest # Use 24.04 with godot 4 container: image: barichello/godot-ci:mono-4.6.1 steps: + - name: apt + run: apt-get update && apt-get install -y nodejs npm - name: Checkout uses: actions/checkout@v4 with: