Compare commits

..

No commits in common. "aa98593a55ce9777c6ec8e0aeece475ad7ed29de" and "6730fd3620246d561ec093862763b78f972b25ce" have entirely different histories.

4 changed files with 10 additions and 36 deletions

View File

@ -6,31 +6,17 @@ on:
branches:
- main
- ci-test
pull_request:
branches:
- main
types:
- opened
- synchronize
- reopened
tags:
- v*
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.ssh_url }}
git remote add origin ${{ gitea.event.repository.clone_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.5
GODOT_VERSION: 4.4
EXPORT_NAME: ${{ vars.ITCH_GAME }}
PROJECT_PATH: .
jobs:
build:
runs-on: ubuntu-latest
runs-on: ubuntu-20.04
container:
image: barichello/godot-ci:4.5
image: barichello/godot-ci:4.4
strategy:
matrix:
include:
@ -30,21 +30,10 @@ 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.ssh_url }}
git remote add origin ${{ gitea.event.repository.clone_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.5", "Forward Plus")
config/features=PackedStringArray("4.4", "Forward Plus")
run/max_fps=60
[debug]
@ -24,8 +24,7 @@ gdscript/warnings/unsafe_call_argument=2
[display]
window/size/viewport_width=1920
window/size/viewport_height=1080
window/stretch/mode="canvas_items"
[dotnet]

View File

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