From 3c619c96131c41810d26929b3899bfd8f88fb261 Mon Sep 17 00:00:00 2001 From: ArthurErlich Date: Tue, 17 Mar 2026 22:47:50 +0100 Subject: [PATCH] fix: fixed never ending job --- .gitea/workflows/release.yml | 16 +++++++++++++--- 1 file changed, 13 insertions(+), 3 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 7081c7a..74b3dd1 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -21,19 +21,22 @@ jobs: run: | apt-get update apt-get install -y curl gnupg + - name: Install Node.js run: | curl -fsSL https://deb.nodesource.com/setup_20.x | bash - apt-get install -y nodejs + - name: Checkout uses: actions/checkout@v4 with: lfs: true + - name: Setup run: | mkdir -v -p ~/.local/share/godot/export_templates/ mkdir -v -p ~/.config/ - godot --headless --no-window --editor + - name: Windows Build run: | mkdir -v -p build/windows @@ -55,10 +58,12 @@ jobs: run: | apt-get update apt-get install -y curl gnupg + - name: Install Node.js run: | curl -fsSL https://deb.nodesource.com/setup_20.x | bash - apt-get install -y nodejs + - name: Checkout uses: actions/checkout@v4 with: @@ -66,13 +71,14 @@ jobs: - name: Setup run: | mkdir -v -p ~/.local/share/godot/export_templates/ - godot --headless --no-window --editor + - name: Linux Build run: | mkdir -v -p build/linux EXPORT_DIR="$(readlink -f build)" cd $PROJECT_PATH godot --headless --verbose --export-release "Linux/X11" "$EXPORT_DIR/linux/$EXPORT_NAME.x86_64" + - name: Upload Artifact uses: actions/upload-artifact@v5 with: @@ -88,24 +94,28 @@ jobs: run: | apt-get update apt-get install -y curl gnupg + - name: Install Node.js run: | curl -fsSL https://deb.nodesource.com/setup_20.x | bash - apt-get install -y nodejs + - name: Checkout uses: actions/checkout@v4 with: lfs: true + - name: Setup run: | mkdir -v -p ~/.local/share/godot/export_templates/ - godot --headless --no-window --editor + - name: Mac Build run: | mkdir -v -p build/mac EXPORT_DIR="$(readlink -f build)" cd $PROJECT_PATH godot --headless --verbose --export-release "macOS" "$EXPORT_DIR/mac/$EXPORT_NAME.zip" + - name: Upload Artifact uses: actions/upload-artifact@v5 with: