diff options
author | Daniel Weipert <git@mail.dweipert.de> | 2023-12-25 01:03:44 +0100 |
---|---|---|
committer | Daniel Weipert <git@mail.dweipert.de> | 2023-12-25 01:11:22 +0100 |
commit | afb1ca10cca0982d37fe76b226b606ca7aa5335c (patch) | |
tree | 7a10fbcc3ce516c3537673dc05fb11ae55750545 /.gitlab-ci.yml | |
parent | 0bfda86c29d106df5fa3dd16d925c193b3f726c7 (diff) |
itch.io publish
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r-- | .gitlab-ci.yml | 28 |
1 files changed, 0 insertions, 28 deletions
diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index b97dac5..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,28 +0,0 @@ -image: ioribranford/godot-docker:latest -# @see https://gitlab.com/HarvHouHacker/SuperTuxParty/-/blob/dev/.gitlab-ci.yml -# @see https://gitlab.com/HarvHouHacker/SuperTuxParty/-/blob/dev/release.sh - -release: - only: - - tags - - before_script: - - mkdir exports - - mkdir .ci-bin && cd .ci-bin - - wget -O butler.zip https://broth.itch.ovh/butler/linux-amd64/LATEST/archive/default - - unzip butler.zip - - chmod +x butler - - cd .. - - export PATH=$(realpath .ci-bin):$PATH - - script: - - godot --export "Linux/X11" "exports/TicTacTux" - - godot --export "Mac OSX" "exports/TicTacTux.zip" - - godot --export "Windows Desktop" "exports/TicTacTux.exe" - - cd exports - - zip TicTacTux-linux.zip TicTacTux TicTacTux.pck - - zip TicTacTux-win.zip TicTacTux.exe TicTacTux.pck - - butler push TicTacTux-linux.zip drogueronin/tictactux:linux --userversion="$CI_COMMIT_REF_NAME" - - butler push TicTacTux.zip drogueronin/tictactux:osx --userversion="$CI_COMMIT_REF_NAME" - - butler push TicTacTux-win.zip drogueronin/tictactux:win --userversion="$CI_COMMIT_REF_NAME" - |