SyncMerge branch 'master' of gitlab.com:LeRatierBretonnien/foundryvtt-reve-de-dragon

This commit is contained in:
LeRatierBretonnien 2020-05-21 22:25:18 +02:00
commit 1a66fd33e4
1 changed files with 29 additions and 0 deletions

29
.gitlab-ci.yml Normal file
View File

@ -0,0 +1,29 @@
image: python:3-alpine
before_script:
- apk update
- apk add zip
stages:
- test
- build
test:
stage: test
script:
- python -mjson.tool 'system.json' > /dev/null
- python -mjson.tool 'module.json' > /dev/null
build:
stage: build
script:
- zip foundryvtt-reve-de-dragon.zip -r *.js *.json *.md module styles templates -x ".*"
artifacts:
name: foundryvtt-reve-de-dragon
when: on_success
paths:
- foundryvtt-reve-de-dragon.zip
when: on_success
only:
- tags
- master