commit 305b050a0169942af774b61fb78c2689282e1bec parent 5b7300d5c50c0d21715b92c83801dc41c4590c49 Author: Lukas Henkel <lh@entf.net> Date: Fri, 3 May 2019 19:02:56 +0200 GitHub mirror Diffstat:
A | .build.yml | | | 18 | ++++++++++++++++++ |
1 file changed, 18 insertions(+), 0 deletions(-)
diff --git a/.build.yml b/.build.yml @@ -0,0 +1,18 @@ +image: alpine/edge +packages: + - git +secrets: + # ~/.ssh/known_hosts + # Could be done without an actual secret, but it seems somewhat nicer + # this way + - 47b4ed2e-4913-403d-8e8a-85d29f3445e3 + # SSH private key + - 354a00e4-31cc-4ea5-9883-e40c18531d5e +tasks: + - mirror: | + # The repo is cloned here manually, because sr.ht points repos + # defined in "sources" to the pushed ref which would break this. + git clone https://git.sr.ht/~lh2/htmltools + cd adventofcode18 + git remote set-url origin git@github.com:lh2/htmltools.git + git push