From 44a7f9632327bbd1e30d9271c91d9907fd321b6b Mon Sep 17 00:00:00 2001 From: Sasmira Date: Thu, 3 Dec 2020 11:53:18 +0000 Subject: [PATCH] Add new file --- .gitlab-ci.yml | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .gitlab-ci.yml diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml new file mode 100644 index 0000000..392197b --- /dev/null +++ b/.gitlab-ci.yml @@ -0,0 +1,22 @@ +image: python:3-alpine + +before_script: + - apk update + - apk add zip + +stages: + - build + +build: + stage: build + script: + - zip l5r5e.zip -r system -x ".*" + artifacts: + expire_in: never + name: l5r5e + when: on_success + paths: + - l5r5e.zip + when: on_success + only: + - tags