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

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778
  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: show tag
  31. image: alpine
  32. commands:
  33. - echo ${DRONE_BUILD_CREATED}
  34. - name: npm run test
  35. image: node:12
  36. commands:
  37. - npm run test
  38. - name: rebuild documentation
  39. image: node:12
  40. commands:
  41. - rm -rf docs
  42. - npm run docs
  43. - name: commit documentation
  44. image: node:12
  45. commands:
  46. - git config --global user.email "frontwork.me@gmail.com"
  47. - git config --global user.name "drone"
  48. - git add -f docs
  49. - git commit --allow-empty -m "documented version at ${DRONE_BUILD_CREATED}"
  50. - git tag ${DRONE_BUILD_CREATED}
  51. - git status
  52. - git push https://$GIT_USER:$GIT_PASSWORD@gitea.frontblock.me/fw-vendor/${DRONE_REPO_NAME}.git master ${DRONE_BUILD_CREATED}
  53. environment:
  54. GIT_USER:
  55. from_secret: git_user
  56. GIT_PASSWORD:
  57. from_secret: git_password
  58. - name: npm publish
  59. image: plugins/npm
  60. settings:
  61. username: frontwork
  62. password:
  63. from_secret: npm_password
  64. email: frontwork.me@gmail.com
  65. volumes:
  66. - name: cache
  67. host:
  68. path: /tmp