diff options
author | Hygna <hygna@proton.me> | 2022-10-04 19:10:07 +0100 |
---|---|---|
committer | Hygna <hygna@proton.me> | 2022-10-04 19:10:07 +0100 |
commit | c87bbba349ced5cbc5d9559fbf8af88f9557ad24 (patch) | |
tree | c8289fd3f245ee365310731f36b66be5405acd39 /.woodpecker | |
parent | Merge branch 'optimizations' (diff) | |
download | libredirect-c87bbba349ced5cbc5d9559fbf8af88f9557ad24.zip |
Ported 87d68cb662
Diffstat (limited to '.woodpecker')
-rw-r--r-- | .woodpecker/instances.yml | 9 |
1 files changed, 5 insertions, 4 deletions
diff --git a/.woodpecker/instances.yml b/.woodpecker/instances.yml index 72fdd6e7..43df0cd9 100644 --- a/.woodpecker/instances.yml +++ b/.woodpecker/instances.yml @@ -8,13 +8,14 @@ pipeline: - python -m pip install --upgrade pip - pip install requests colorama - python src/instances/get_instances.py + # SSH configuration + - mkdir ~/.ssh + - ssh-keyscan -t ed25519 codeberg.org >> ~/.ssh/known_hosts + - eval `ssh-agent` + - echo "$TOKEN" | tr -d '\r' | ssh-add - # Git configuration - git config --global user.email $MAIL - git config --global user.name "Woodpecker CI" - git commit -am "updated instances" - - mkdir ~/.ssh - - ssh-keyscan -t ed25519 codeberg.org >> ~/.ssh/known_hosts - git remote set-url origin git@codeberg.org:libredirect/libredirect.git - - eval `ssh-agent` - - echo "$TOKEN" | tr -d '\r' | ssh-add - - git push --set-upstream origin master |