123456789101112131415161718192021 |
- pipeline:
- build-frontend:
- image: node:14
- commands:
- - cd src/app
- - yarn
- # - yarn build
- - rm -rf ./node_modules
- - mkdir -p ./src/main/resources/static
- - cp -r ./dist/frei-app/* ./src/main/resources/static/
- build-backend:
- image: maven:3.3.9-jdk-8
- commands:
- - mvn package
- deploy-backend:
- image: docker
- commands:
- - apk add --no-cache openssh-client net-tools
- - mkdir -p ~/.ssh
|