Fix 2
Some checks failed
godot-ci export / build (push) Failing after 57s

This commit is contained in:
2025-05-13 13:48:40 +02:00
parent 33d49b2c05
commit c366a14c19

View File

@@ -56,10 +56,16 @@ jobs:
cd $PROJECT_PATH cd $PROJECT_PATH
./godot --headless --verbose --export-release "Windows Desktop" "$EXPORT_DIR/windows/$EXPORT_NAME.exe" ./godot --headless --verbose --export-release "Windows Desktop" "$EXPORT_DIR/windows/$EXPORT_NAME.exe"
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 run: |
with: curl --user your_username:your_password_or_token \
name: windows --upload-file "$EXPORT_DIR/windows/$EXPORT_NAME.exe" \
path: build/windows 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 - name: Linux Build
run: | run: |
@@ -67,11 +73,11 @@ jobs:
EXPORT_DIR="$(readlink -f build)" EXPORT_DIR="$(readlink -f build)"
cd $PROJECT_PATH cd $PROJECT_PATH
godot --headless --verbose --export-release "Linux/X11" "$EXPORT_DIR/linux/$EXPORT_NAME.x86_64" godot --headless --verbose --export-release "Linux/X11" "$EXPORT_DIR/linux/$EXPORT_NAME.x86_64"
- name: Upload Artifact #- name: Upload Artifact
uses: actions/upload-artifact@v4 # uses: actions/upload-artifact@v4
with: # with:
name: linux # name: linux
path: build/linux # path: build/linux
#- name: Zip HTML Export #- name: Zip HTML Export
# run: | # run: |