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.8KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687
  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. - git reset HEAD --hard
  60. - echo "remove files in ${DRONE_REPO_NAME}"; rm -rf ./${DRONE_REPO_NAME}/*
  61. - echo "copy docs to ${DRONE_REPO_NAME}"; cp -r ./docs/* ./${DRONE_REPO_NAME}
  62. - ls ./${DRONE_REPO_NAME}
  63. - echo "add files in ${DRONE_REPO_NAME}"; git add ${DRONE_REPO_NAME}/*
  64. - git commit -m "Drone tagged as ${DRONE_TAG}"
  65. - git push --force https://$GIT_USER:$GIT_PASSWORD@gitea.frontblock.me/fw-docs/${DRONE_REPO_NAME}.git master
  66. environment:
  67. GIT_USER:
  68. from_secret: git_user
  69. GIT_PASSWORD:
  70. from_secret: git_password
  71. when:
  72. event:
  73. - tag
  74. volumes:
  75. - name: cache
  76. host:
  77. path: /tmp