From c366a14c193d6b673d4f08a96a3e9a24cd2c0bb0 Mon Sep 17 00:00:00 2001 From: Sebastian Date: Tue, 13 May 2025 13:48:40 +0200 Subject: [PATCH] Fix 2 --- .gitea/workflows/gitea-ci.yaml | 24 +++++++++++++++--------- 1 file changed, 15 insertions(+), 9 deletions(-) diff --git a/.gitea/workflows/gitea-ci.yaml b/.gitea/workflows/gitea-ci.yaml index 102821e..2cc8124 100644 --- a/.gitea/workflows/gitea-ci.yaml +++ b/.gitea/workflows/gitea-ci.yaml @@ -56,10 +56,16 @@ jobs: cd $PROJECT_PATH ./godot --headless --verbose --export-release "Windows Desktop" "$EXPORT_DIR/windows/$EXPORT_NAME.exe" - name: Upload Artifact - uses: actions/upload-artifact@v4 - with: - name: windows - path: build/windows + run: | + curl --user your_username:your_password_or_token \ + --upload-file "$EXPORT_DIR/windows/$EXPORT_NAME.exe" \ + https://gitea.sanplex.tech/api/packages/sansan/generic/GodotTest/0.0.1/$EXPORT_NAME.exe + + + # uses: actions/upload-artifact@v4 + # with: + # name: windows + # path: build/windows - name: Linux Build run: | @@ -67,11 +73,11 @@ jobs: 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@v4 - with: - name: linux - path: build/linux + #- name: Upload Artifact + # uses: actions/upload-artifact@v4 + # with: + # name: linux + # path: build/linux #- name: Zip HTML Export # run: |