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: branches:
- main - main
- ci-test - ci-test
pull_request: tags:
branches: - v*
- main
types:
- opened
- synchronize
- reopened
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
steps: 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 - name: Checkout repository
run: | run: |
git init 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 fetch --depth 1 origin ${{ gitea.ref }}
git checkout FETCH_HEAD git checkout FETCH_HEAD
git lfs pull git lfs pull

View File

@ -8,16 +8,16 @@ on:
- v* - v*
env: env:
GODOT_VERSION: 4.5 GODOT_VERSION: 4.4
EXPORT_NAME: ${{ vars.ITCH_GAME }} EXPORT_NAME: ${{ vars.ITCH_GAME }}
PROJECT_PATH: . PROJECT_PATH: .
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-20.04
container: container:
image: barichello/godot-ci:4.5 image: barichello/godot-ci:4.4
strategy: strategy:
matrix: matrix:
include: include:
@ -30,21 +30,10 @@ jobs:
env: env:
BUILD_DIR: build/${{ vars.ITCH_GAME }}_${{ gitea.ref_name }}_${{ matrix.target }} BUILD_DIR: build/${{ vars.ITCH_GAME }}_${{ gitea.ref_name }}_${{ matrix.target }}
steps: 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 - name: Checkout repository
run: | run: |
git init 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 fetch --depth 1 origin ${{ gitea.ref }}
git checkout FETCH_HEAD git checkout FETCH_HEAD
git lfs pull git lfs pull

View File

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

View File

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