You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

.drone.yml 1.7KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788
  1. kind: pipeline
  2. name: default
  3. steps:
  4. - name: restore cache
  5. image: drillster/drone-volume-cache
  6. settings:
  7. restore: true
  8. mount:
  9. - ./node_modules
  10. volumes:
  11. - name: cache
  12. path: /cache
  13. - name: npm install
  14. image: node:12
  15. commands:
  16. - npm install
  17. - name: npm run build
  18. image: node:12
  19. commands:
  20. - npm run build
  21. - name: rebuild cache
  22. image: drillster/drone-volume-cache
  23. settings:
  24. rebuild: true
  25. mount:
  26. - ./node_modules
  27. volumes:
  28. - name: cache
  29. path: /cache
  30. - name: npm run test
  31. image: node:12
  32. commands:
  33. - npm run test
  34. - name: rebuild documentation
  35. image: node:12
  36. commands:
  37. - rm -rf docs
  38. - npm run docs
  39. when:
  40. event:
  41. - tag
  42. - name: npm publish
  43. image: plugins/npm
  44. settings:
  45. username: frontwork
  46. password:
  47. from_secret: npm_password
  48. email: frontwork.me@gmail.com
  49. when:
  50. event:
  51. - tag
  52. - name: deploy documentation
  53. image: node:12
  54. commands:
  55. - echo ${DRONE_BUILD_CREATED}
  56. - git config --global user.email "${DRONE_COMMIT_AUTHOR_EMAIL}"
  57. - git config --global user.name "${DRONE_COMMIT_AUTHOR}"
  58. - echo "clone ${DRONE_REPO_NAME}"; git clone https://gitea.frontblock.me/fw-docs/${DRONE_REPO_NAME}.git
  59. - cd ${DRONE_REPO_NAME}
  60. - git reset HEAD --hard
  61. - echo "remove files in ${DRONE_REPO_NAME}"; rm -rf ./*
  62. - echo "copy docs to ${DRONE_REPO_NAME}"; cp -r ../docs/* .
  63. - ls
  64. - echo "add files in ${DRONE_REPO_NAME}"; git add -A
  65. - git commit -m "Drone tagged as ${DRONE_TAG}"
  66. - git push --force origin master
  67. environment:
  68. GIT_USER:
  69. from_secret: git_user
  70. GIT_PASSWORD:
  71. from_secret: git_password
  72. when:
  73. event:
  74. - tag
  75. volumes:
  76. - name: cache
  77. host:
  78. path: /tmp