client/.drone.yml
Artem Anufrij 0b59441fb3
Some checks failed
continuous-integration/drone/push Build is failing
„.drone.yml“ ändern
2023-02-13 22:37:20 +01:00

17 lines
389 B
YAML

kind: pipeline
name: default
steps:
- name: build
image: node:latest
commands:
- sed -i '/"electron":/d' ./package.json
- sed -i '/"electron-builder":/d' ./package.json
- sed -i '/"express":/d' ./package.json
- npm install
- npm run build
- name: docker-build
image: docker
commands:
- docker build -t myimage:$DRONE_BUILD_NUMBER .