diff --git a/.drone.yml b/.drone.yml index 7fb8e7b..64b61e8 100644 --- a/.drone.yml +++ b/.drone.yml @@ -7,7 +7,6 @@ steps: - name: Version check image: plugins/hugo commands: - - git clone git@git.deuxfleurs.fr:julienDai/test.git - echo "Checking Hugo version." - hugo version - echo "Checking folder" @@ -20,11 +19,15 @@ steps: - hugo --config hugo.toml #- minify -r -o /drone/src/build /drone/src/build - name: Deploy - image: plugins/hugo + image: alpine/git environment: - AWS_ACCESS_KEY_ID: - from_secret: AWS_ACCESS_KEY_ID - AWS_SECRET_ACCESS_KEY: - from_secret: AWS_SECRET_ACCESS_KEY + GIT_USERNAME: + from_secret: GIT_USERNAME + GIT_PASSWORD: + from_secret: GIT_PASSWORD commands: - - hugo deploy --config hugo.toml \ No newline at end of file + - git clone https://julienDai@git.deuxfleurs.fr/julienDai/test + - cd test + - git config user.name "julienDai" + - git config user.email "julien.dai@imt-atlantique.net" + - git push origin main \ No newline at end of file