gtsocial-umbx

Unnamed repository; edit this file 'description' to name the repository.
Log | Files | Refs | README | LICENSE

commit dc2421752feb97bed9b09f500b97d120e19d032c
parent 31935ee206107f077878d3cdb6a26b82436b6893
Author: tobi <31960611+tsmethurst@users.noreply.github.com>
Date:   Mon, 14 Feb 2022 10:49:20 +0100

[chore] fix mirror + clean up (#396)


Diffstat:
M.drone.yml | 9++++++---
1 file changed, 6 insertions(+), 3 deletions(-)

diff --git a/.drone.yml b/.drone.yml @@ -131,16 +131,19 @@ steps: CODEBERG_TOKEN: from_secret: gts_codeberg_token commands: + # clone mirror + - git clone --mirror https://github.com/superseriousbusiness/gotosocial . # configure git credentials - git config --global user.email "admin@gotosocial.org" - git config credential.helper store - printf "https://gotosocialbot:${CODEBERG_TOKEN}@codeberg.org\n" >> ~/.git-credentials - # mirror and push - - git clone --mirror https://github.com/superseriousbusiness/gotosocial . + # push mirror - git push --mirror https://codeberg.org/superseriousbusiness/gotosocial + # clean up + - rm ~/.git-credentials --- kind: signature -hmac: 56eb9e0f41199d44f2fc76b6d8265b9c4841ec2f5724852e7c116170d823d5a4 +hmac: 0487be0a2c9224c20cf067f94b3a458227e8b5465198b2245266d17156355b98 ...