diff options
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" - |