From 3e38ff4a3653894079a19f2bab79ee1f39894f70 Mon Sep 17 00:00:00 2001 From: shru Date: Thu, 20 Dec 2018 12:08:28 -0500 Subject: [PATCH] Give up! just manually deploy the whole thing. --- .gitlab-ci.yml | 24 ++++++------------------ 1 file changed, 6 insertions(+), 18 deletions(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index bc72cb5..c9543ca 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -6,28 +6,16 @@ variables: CHANNEL: $CI_COMMIT_REF_NAME stages: - - build - - release + - build-release -build: - stage: build - script: - - cd src - - love-release -W - cache: - key: build-cache - paths: - - src/releases/ - -release: - stage: release +build-and-release: + stage: build-release when: manual script: - - ls -l + # I - Build - cd src - - ls -l + - love-release -W + # II - Release to itch.io - cd releases - FILE=$(ls *-win32.zip) ; butler push "$FILE" "$ITCHIO_USER/$ITCHIO_GAME:win32-$CHANNEL" # - FILE=$(ls *-win64.zip) ; butler push "$FILE" "$ITCHIO_USER/$ITCHIO_GAME:win64-$CHANNEL" - cache: - key: build-cache