Browse Source

fix(drone): update GIT_REMOTE for deployment configuration

- Changed the GIT_REMOTE URL in the .drone.yml file to use a new SSH format for improved access to the repository.
- This update ensures that the deployment process can connect to the correct remote repository, enhancing the reliability of the CI/CD pipeline.

These changes refine the deployment configuration, ensuring proper repository access during the deployment process.
main
npmrun 1 week ago
parent
commit
d37bbf8813
  1. 2
      .drone.yml

2
.drone.yml

@ -15,7 +15,7 @@ steps:
environment: environment:
DEPLOY_BRANCH: deploy DEPLOY_BRANCH: deploy
REPO_DIR: /root/projects/nuxt4-demo/nuxt4-demo-origin REPO_DIR: /root/projects/nuxt4-demo/nuxt4-demo-origin
GIT_REMOTE: git@gitee.com:xieyaxin/nuxt4-demo.git GIT_REMOTE: ssh://root@git.xieyaxin.top:8892/topuser/nuxt4-demo.git
UNZIP_DIR: /root/projects/nuxt4-demo/nuxt4-demo UNZIP_DIR: /root/projects/nuxt4-demo/nuxt4-demo
DEPLOY_SSH_KEY: DEPLOY_SSH_KEY:
from_secret: DEPLOY_SSH_KEY from_secret: DEPLOY_SSH_KEY

Loading…
Cancel
Save