Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

.drone.yml 1.8KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  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 globals.md >> ./README.md
  65. - echo "# Version" >> ./README.md
  66. - echo "${DRONE_TAG}" >> ./README.md
  67. - echo "add files in ${DRONE_REPO_NAME}"; git add -A
  68. - git commit --allow-empty -m "Drone tagged as ${DRONE_TAG}"
  69. - git push --force origin master
  70. environment:
  71. GIT_USER:
  72. from_secret: git_user
  73. GIT_PASSWORD:
  74. from_secret: git_password
  75. when:
  76. event:
  77. - tag
  78. volumes:
  79. - name: cache
  80. host:
  81. path: /tmp