12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697 |
- ---
- kind: pipeline
- type: docker
- 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: npm run test
- image: node:12
- commands:
- - npm run test
-
- - name: rebuild documentation
- image: node:12
- commands:
- - rm -rf docs
- - npm run docs
- when:
- event:
- - tag
-
- - name: npm publish
- image: plugins/npm
- settings:
- username: frontwork
- password:
- from_secret: npm_password
- email: frontwork.me@gmail.com
- when:
- event:
- - tag
-
- - name: deploy documentation
- image: node:12
- commands:
- - echo ${DRONE_BUILD_CREATED}
- - git config --global user.email "${DRONE_COMMIT_AUTHOR_EMAIL}"
- - git config --global user.name "${DRONE_COMMIT_AUTHOR}"
- - echo "clone ${DRONE_REPO_NAME}"; git clone https://www.versioncontrol.me/frontwork-documentation/${DRONE_REPO_NAME}.git
- - cd ${DRONE_REPO_NAME}
- - git reset HEAD --hard
- - echo "remove files in ${DRONE_REPO_NAME}"; rm -rf ./*
- - echo "copy docs to ${DRONE_REPO_NAME}"; cp -r ../docs/* .
- - ls
- - rm ./README.md
- - head -n -2 ../README.md > ./README.md
- - echo "## Version" >> ./README.md
- - echo "${DRONE_TAG}" >> ./README.md
- - echo "" >> ./README.md
- - sed -i -e 1,4d ./globals.md
- - cat globals.md >> ./README.md
- - echo "add files in ${DRONE_REPO_NAME}"; git add -A
- - git commit --allow-empty -m "Drone tagged as ${DRONE_TAG}"
- - git push --force origin master
- environment:
- GIT_USER:
- from_secret: git_user
- GIT_PASSWORD:
- from_secret: git_password
- when:
- event:
- - tag
-
- volumes:
- - name: cache
- host:
- path: /tmp
|