Files
fb-admin/.drone.yml
T
2019-08-19 15:44:37 +02:00

84 lines
1.7 KiB
YAML

kind: pipeline
name: default
steps:
- name: restore cache
image: drillster/drone-volume-cache
settings:
restore: true
mount:
- ./node_modules
volumes:
- name: cache
path: /cache
- name: npm install
image: node:12
commands:
- npm install
- name: npm run build
image: node:12
commands:
- npm run build
- name: rebuild cache
image: drillster/drone-volume-cache
settings:
rebuild: true
mount:
- ./node_modules
volumes:
- name: cache
path: /cache
- name: show tag
image: alpine
commands:
- echo ${DRONE_BUILD_CREATED}
- name: deploy static files
image: node:12
commands:
- git config --global user.email "${DRONE_COMMIT_AUTHOR_EMAIL}"
- git config --global user.name "${DRONE_COMMIT_AUTHOR}"
- git clone https://gitea.frontblock.me/fb-dist/${DRONE_REPO_NAME}.git
- cp -r ./lib/* ./${DRONE_REPO_NAME}
- cd ./${DRONE_REPO_NAME}
- git add -A
- git commit -m "drone taged as version ${DRONE_TAG}"
- git tag ${DRONE_TAG}
- git push https://$GIT_USER:$GIT_PASSWORD@gitea.frontblock.me/fb-dist/${DRONE_REPO_NAME}.git ${DRONE_TAG}
environment:
GIT_USER:
from_secret: git_user
GIT_PASSWORD:
from_secret: git_password
when:
event:
- tag
- name: deliver container
image: plugins/docker
settings:
registry: registry.frontblock.me
insecure: true
repo: registry.frontblock.me/vendor/dashboard
tags: ${DRONE_BUILD_CREATED}
- name: release container
image: plugins/docker
settings:
repo: frontblockme/dashboard
tags: ${DRONE_TAG}
username: frontblockme
password:
from_secret: docker_password
when:
event:
- tag
volumes:
- name: cache
host:
path: /tmp