Compare commits

...

3 Commits

Author SHA1 Message Date
aa98593a55 Bumped CI godot version to 4.5 2025-09-29 12:00:13 -06:00
e6b2a4fb46 Pinned gdtoolkit version to 4.3.3 2025-09-29 11:58:41 -06:00
2cefdcc6c1 Bumped engine version to 4.5 2025-09-29 11:58:33 -06:00
4 changed files with 36 additions and 10 deletions

View File

@ -6,17 +6,31 @@ on:
branches:
- main
- ci-test
tags:
- v*
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: SSH key installation
run: |
mkdir -p ~/.ssh/
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_ecdsa
chmod 600 ~/.ssh/id_ecdsa
echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
env:
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_KEY }}
SSH_KNOWN_HOSTS: ${{ secrets.SSH_KNOWN_HOSTS }}
- name: Checkout repository
run: |
git init
git remote add origin ${{ gitea.event.repository.clone_url }}
git remote add origin ${{ gitea.event.repository.ssh_url }}
git fetch --depth 1 origin ${{ gitea.ref }}
git checkout FETCH_HEAD
git lfs pull

View File

@ -8,16 +8,16 @@ on:
- v*
env:
GODOT_VERSION: 4.4
GODOT_VERSION: 4.5
EXPORT_NAME: ${{ vars.ITCH_GAME }}
PROJECT_PATH: .
jobs:
build:
runs-on: ubuntu-20.04
runs-on: ubuntu-latest
container:
image: barichello/godot-ci:4.4
image: barichello/godot-ci:4.5
strategy:
matrix:
include:
@ -30,10 +30,21 @@ jobs:
env:
BUILD_DIR: build/${{ vars.ITCH_GAME }}_${{ gitea.ref_name }}_${{ matrix.target }}
steps:
- name: SSH key installation
run: |
apt-get update
apt-get install -y openssh-client
mkdir -p ~/.ssh/
echo "$SSH_PRIVATE_KEY" > ~/.ssh/id_ecdsa
chmod 600 ~/.ssh/id_ecdsa
echo "$SSH_KNOWN_HOSTS" > ~/.ssh/known_hosts
env:
SSH_PRIVATE_KEY: ${{ secrets.DEPLOY_KEY }}
SSH_KNOWN_HOSTS: ${{ secrets.SSH_KNOWN_HOSTS }}
- name: Checkout repository
run: |
git init
git remote add origin ${{ gitea.event.repository.clone_url }}
git remote add origin ${{ gitea.event.repository.ssh_url }}
git fetch --depth 1 origin ${{ gitea.ref }}
git checkout FETCH_HEAD
git lfs pull

View File

@ -11,7 +11,7 @@ config_version=5
[application]
config/name="${REPO_NAME_TITLE}"
config/features=PackedStringArray("4.4", "Forward Plus")
config/features=PackedStringArray("4.5", "Forward Plus")
run/max_fps=60
[debug]
@ -24,7 +24,8 @@ gdscript/warnings/unsafe_call_argument=2
[display]
window/stretch/mode="canvas_items"
window/size/viewport_width=1920
window/size/viewport_height=1080
[dotnet]

View File

@ -1,2 +1,2 @@
gdtoolkit>=4.3.3,<4.4
gdtoolkit==4.3.3
setuptools>=75.8.0,<76