29 lines
488 B
YAML
29 lines
488 B
YAML
image: python:3-alpine
|
|
|
|
before_script:
|
|
- apk update
|
|
- apk add zip
|
|
|
|
stages:
|
|
- test
|
|
- build
|
|
|
|
test:
|
|
stage: test
|
|
script:
|
|
- python -mjson.tool 'module.json' > /dev/null
|
|
|
|
build:
|
|
stage: build
|
|
script:
|
|
- zip foundryvtt-rdd-fontaine-ortigrise.zip -r *.js *.json *.md packs scenes -x ".*"
|
|
artifacts:
|
|
name: foundryvtt-rdd-fontaine-ortigrise
|
|
when: on_success
|
|
paths:
|
|
- foundryvtt-rdd-fontaine-ortigrise.zip
|
|
when: on_success
|
|
only:
|
|
- tags
|
|
- master
|