forked from public/fvtt-yggdrasill
30 lines
498 B
YAML
30 lines
498 B
YAML
|
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 'template.json' > /dev/null
|
||
|
|
||
|
build:
|
||
|
stage: build
|
||
|
script:
|
||
|
- zip fvtt-yggdrasill.zip -r *.js *.json *.md module styles templates -x ".*"
|
||
|
artifacts:
|
||
|
name: fvtt-yggdrasill
|
||
|
when: on_success
|
||
|
paths:
|
||
|
- fvtt-yggdrasill.zip
|
||
|
when: on_success
|
||
|
only:
|
||
|
- tags
|
||
|
- master
|