Add full url to upload action
Some checks failed
godot-ci export / Windows Export (push) Failing after 28s
godot-ci export / Linux Export (push) Failing after 12s
godot-ci export / Web Export (push) Failing after 11s
godot-ci export / Mac Export (push) Failing after 21s

This commit is contained in:
Antonio Dell'Annunziata 2025-03-02 14:15:56 +01:00
parent 7064e968f1
commit 694cedee09
No known key found for this signature in database
GPG key ID: 8D2BB16641F06E94

View file

@ -27,7 +27,7 @@ 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 uses: https://code.forgejo.org/actions/upload-artifact@v4
with: with:
name: windows name: windows
path: build/windows path: build/windows
@ -49,7 +49,7 @@ jobs:
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: https://code.forgejo.org/actions/upload-artifact@v4
with: with:
name: linux name: linux
path: build/linux path: build/linux
@ -71,7 +71,7 @@ jobs:
cd $PROJECT_PATH cd $PROJECT_PATH
godot --headless --verbose --export-release "Web" "$EXPORT_DIR/web/index.html" godot --headless --verbose --export-release "Web" "$EXPORT_DIR/web/index.html"
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: https://code.forgejo.org/actions/upload-artifact@v4
with: with:
name: web name: web
path: build/web path: build/web
@ -93,7 +93,7 @@ jobs:
cd $PROJECT_PATH cd $PROJECT_PATH
godot --headless --verbose --export-release "macOS" "$EXPORT_DIR/mac/$EXPORT_NAME.zip" godot --headless --verbose --export-release "macOS" "$EXPORT_DIR/mac/$EXPORT_NAME.zip"
- name: Upload Artifact - name: Upload Artifact
uses: actions/upload-artifact@v4 uses: https://code.forgejo.org/actions/upload-artifact@v4
with: with:
name: mac name: mac
path: build/mac path: build/mac