From 0d14d27a0b5213f6ed146a93815ad55f01b9f1fe Mon Sep 17 00:00:00 2001 From: ArthurErlich Date: Tue, 17 Mar 2026 22:50:20 +0100 Subject: [PATCH] chore: reduce upload artifact version, removed mac --- .gitea/workflows/release.yml | 43 +++--------------------------------- 1 file changed, 3 insertions(+), 40 deletions(-) diff --git a/.gitea/workflows/release.yml b/.gitea/workflows/release.yml index 74b3dd1..1e039c5 100644 --- a/.gitea/workflows/release.yml +++ b/.gitea/workflows/release.yml @@ -42,9 +42,9 @@ jobs: mkdir -v -p build/windows EXPORT_DIR="$(readlink -f build)" cd $PROJECT_PATH - godot --headless --verbose --export-release "Windows Desktop" "$EXPORT_DIR/windows/$EXPORT_NAME.exe" + godot --headless --verbose --export-release "Windows" "$EXPORT_DIR/windows/$EXPORT_NAME.exe" - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v4 with: name: windows path: build/windows @@ -80,48 +80,11 @@ jobs: godot --headless --verbose --export-release "Linux/X11" "$EXPORT_DIR/linux/$EXPORT_NAME.x86_64" - name: Upload Artifact - uses: actions/upload-artifact@v5 + uses: actions/upload-artifact@v4 with: name: linux path: build/linux - export-mac: - name: Mac Export - runs-on: ubuntu-24.04 # Use 24.04 with godot 4 - container: barichello/godot-ci:4.6 - steps: - - name: Update and install dependencies - 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/ - - - 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: - name: mac - path: build/mac - create-release: name: Create Release runs-on: ubuntu-latest