This commit is contained in:
@@ -56,7 +56,14 @@ jobs:
|
|||||||
./godot --headless --verbose --export-release "Windows Desktop" "build/windows/$EXPORT_NAME.exe"
|
./godot --headless --verbose --export-release "Windows Desktop" "build/windows/$EXPORT_NAME.exe"
|
||||||
|
|
||||||
ls -la "build/windows/"
|
ls -la "build/windows/"
|
||||||
- name: Upload Artifact
|
- name: Linux Build
|
||||||
|
run: |
|
||||||
|
mkdir -v -p build/linux
|
||||||
|
cd $PROJECT_PATH
|
||||||
|
./godot --headless --verbose --export-release "Linux/X11" "build/linux/$EXPORT_NAME.x86_64"
|
||||||
|
|
||||||
|
|
||||||
|
- name: Upload Artifact Windows
|
||||||
run: |
|
run: |
|
||||||
echo $EXPORT_DIR
|
echo $EXPORT_DIR
|
||||||
pwd
|
pwd
|
||||||
@@ -68,17 +75,29 @@ jobs:
|
|||||||
--upload-file "build/windows/$EXPORT_NAME.exe" \
|
--upload-file "build/windows/$EXPORT_NAME.exe" \
|
||||||
https://gitea.sanplex.tech/api/packages/sansan/generic/GodotTest/0.0.1/$EXPORT_NAME.exe
|
https://gitea.sanplex.tech/api/packages/sansan/generic/GodotTest/0.0.1/$EXPORT_NAME.exe
|
||||||
|
|
||||||
|
- name: Upload Artifact Linux
|
||||||
|
run: |
|
||||||
|
echo $EXPORT_DIR
|
||||||
|
pwd
|
||||||
|
ls -la
|
||||||
|
ls -la build
|
||||||
|
ls -la build/linux
|
||||||
|
ls -la "build/linux/"
|
||||||
|
curl --user ${{ github.repository_owner }}:${{ secrets.TOKEN }} \
|
||||||
|
--upload-file "build/linux/$EXPORT_NAME.x86_64" \
|
||||||
|
https://gitea.sanplex.tech/api/packages/sansan/generic/GodotTest/0.0.1/$EXPORT_NAME.x86_64
|
||||||
|
|
||||||
|
- name: MacOS Build
|
||||||
|
run: |
|
||||||
|
mkdir -v -p build/macos
|
||||||
|
cd $PROJECT_PATH
|
||||||
|
./godot --headless --verbose --export-release "macOS" "build/macos/$EXPORT_NAME.zip"
|
||||||
|
|
||||||
# uses: actions/upload-artifact@v4
|
# uses: actions/upload-artifact@v4
|
||||||
# with:
|
# with:
|
||||||
# name: windows
|
# name: windows
|
||||||
# path: build/windows
|
# path: build/windows
|
||||||
|
|
||||||
- name: Linux Build
|
|
||||||
run: |
|
|
||||||
mkdir -v -p build/linux
|
|
||||||
cd $PROJECT_PATH
|
|
||||||
godot --headless --verbose --export-release "Linux/X11" "build/linux/$EXPORT_NAME.x86_64"
|
|
||||||
#- name: Upload Artifact
|
#- name: Upload Artifact
|
||||||
# uses: actions/upload-artifact@v4
|
# uses: actions/upload-artifact@v4
|
||||||
# with:
|
# with:
|
||||||
|
|||||||
@@ -25,6 +25,10 @@ window/size/viewport_width=1920
|
|||||||
window/size/viewport_height=1080
|
window/size/viewport_height=1080
|
||||||
window/size/resizable=false
|
window/size/resizable=false
|
||||||
|
|
||||||
|
[dotnet]
|
||||||
|
|
||||||
|
project/assembly_name="gameoff"
|
||||||
|
|
||||||
[input]
|
[input]
|
||||||
|
|
||||||
ui_up={
|
ui_up={
|
||||||
|
|||||||
@@ -42,5 +42,7 @@ offset_left = 625.0
|
|||||||
offset_top = 820.0
|
offset_top = 820.0
|
||||||
offset_right = 625.0
|
offset_right = 625.0
|
||||||
offset_bottom = 820.0
|
offset_bottom = 820.0
|
||||||
|
grow_horizontal = 2
|
||||||
|
grow_vertical = 2
|
||||||
|
|
||||||
[connection signal="start_zoom_out" from="." to="." method="_on_Main_start_zoom_out"]
|
[connection signal="start_zoom_out" from="." to="." method="_on_Main_start_zoom_out"]
|
||||||
|
|||||||
Reference in New Issue
Block a user