Browse Source

FIX XD

master
peter 5 years ago
parent
commit
a831618be5
1 changed files with 2 additions and 2 deletions
  1. 2
    2
      .drone.yml

+ 2
- 2
.drone.yml View File

65
   - git config --global user.email "${DRONE_COMMIT_AUTHOR_EMAIL}"
65
   - git config --global user.email "${DRONE_COMMIT_AUTHOR_EMAIL}"
66
   - git config --global user.name "${DRONE_COMMIT_AUTHOR}"
66
   - git config --global user.name "${DRONE_COMMIT_AUTHOR}"
67
   - git clone https://gitea.frontblock.me/fw-docs/${DRONE_REPO_NAME}.git
67
   - git clone https://gitea.frontblock.me/fw-docs/${DRONE_REPO_NAME}.git
68
-  - rm -rf ./${DRONE_REPO_NAME}/*
68
+  - git rm -rf ./${DRONE_REPO_NAME}/*
69
   - cp -r ./docs/* ./${DRONE_REPO_NAME}
69
   - cp -r ./docs/* ./${DRONE_REPO_NAME}
70
   - ls ./${DRONE_REPO_NAME}
70
   - ls ./${DRONE_REPO_NAME}
71
   - git add -f docs
71
   - git add -f docs
72
   - git commit --allow-empty -m "Drone tagged as ${DRONE_TAG}"
72
   - git commit --allow-empty -m "Drone tagged as ${DRONE_TAG}"
73
   - git tag "${DRONE_TAG}"
73
   - git tag "${DRONE_TAG}"
74
-  - git push -f -u https://$GIT_USER:$GIT_PASSWORD@gitea.frontblock.me/fw-docs/${DRONE_REPO_NAME}.git master ${DRONE_TAG}
74
+  - git push https://$GIT_USER:$GIT_PASSWORD@gitea.frontblock.me/fw-docs/${DRONE_REPO_NAME}.git master ${DRONE_TAG}
75
   environment:
75
   environment:
76
     GIT_USER:
76
     GIT_USER:
77
       from_secret: git_user
77
       from_secret: git_user

Loading…
Cancel
Save