Fix for task dates update (#24)

This commit is contained in:
konrad 2019-03-03 21:38:12 +00:00 committed by Gitea
parent 6603c046bc
commit ae499fd8a0
1 changed files with 5 additions and 4 deletions

View File

@ -9,14 +9,15 @@ clone:
pipeline: pipeline:
build: build:
image: node image: node:11-alpine
pull: true pull: true
group: build-static group: build-static
commands: commands:
- npm install - apk add yarn
- npm run lint - yarn
- yarn run lint
- "echo '{\"VIKUNJA_API_BASE_URL\": \"/api/v1/\"}' > /srv/app/src/git.kolaente.de/vikunja/frontend/public/config.json" # Override config - "echo '{\"VIKUNJA_API_BASE_URL\": \"/api/v1/\"}' > /srv/app/src/git.kolaente.de/vikunja/frontend/public/config.json" # Override config
- npm run build - yarn run build
when: when:
event: [push, tag, pull_request] event: [push, tag, pull_request]