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: 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 ./dist/* ./${DRONE_REPO_NAME} - cd ./${DRONE_REPO_NAME} - git add -A - git commit --allow-empty -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 master ${DRONE_TAG} environment: GIT_USER: from_secret: git_user GIT_PASSWORD: from_secret: git_password when: event: - tag volumes: - name: cache host: path: /tmp