foundryvtt-wh4-lang-fr-fr/.gitlab-ci.yml

30 lines
473 B
YAML
Raw Normal View History

2020-03-24 11:12:22 +01:00
image: python:3-alpine
before_script:
- apk update
- apk add zip
stages:
- test
- build
test:
stage: test
script:
- python -mjson.tool 'fr.json' > /dev/null
- python -mjson.tool 'module.json' > /dev/null
build:
stage: build
script:
2020-04-07 18:07:01 +02:00
- zip wh4-fr-FR.zip -r *.js *.json *.md compendium lang tables -x ".*"
2020-03-24 11:12:22 +01:00
artifacts:
name: wh4-fr-FR
when: on_success
paths:
- wh4-fr-FR.zip
when: on_success
only:
- tags
- master