diff options
| author | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-06-03 16:22:15 +0200 |
|---|---|---|
| committer | emmett1 <emmett1.2miligrams@protonmail.com> | 2025-06-03 16:22:15 +0200 |
| commit | b1966179816980489b11037e27861acc29eeee50 (patch) | |
| tree | 22102b42f5dfd3bff0e55b6c3bcafdbe0b0ad3f5 /.woodpecker.yml | |
| parent | da90ad55ae0be57f2de7eaeaba9d71797ba3c50a (diff) | |
| download | alicelinux-b1966179816980489b11037e27861acc29eeee50.tar.gz alicelinux-b1966179816980489b11037e27861acc29eeee50.zip | |
update woodpecker
Diffstat (limited to '.woodpecker.yml')
| -rw-r--r-- | .woodpecker.yml | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/.woodpecker.yml b/.woodpecker.yml index 50500d19..bf082ae0 100644 --- a/.woodpecker.yml +++ b/.woodpecker.yml @@ -20,6 +20,24 @@ steps: - git add --all - git commit -m "Woodpecker CI ${CI_COMMIT_SHA} [SKIP CI]" --allow-empty - git push + - cd .. + - git clone -b core https://$${CBTOKEN}@codeberg.org/$CI_REPO.git $CI_REPO_NAME + - cd $CI_REPO_NAME + - git rm -r "*" || true + - cp -ar ../repos/core/. . || true + - git add --all + - git commit -m "Woodpecker CI ${CI_COMMIT_SHA} [SKIP CI]" --allow-empty + - git push + - cd .. + - rm -rf $CI_REPO_NAME + - git clone -b extra https://$${CBTOKEN}@codeberg.org/$CI_REPO.git $CI_REPO_NAME + - cd $CI_REPO_NAME + - git rm -r "*" || true + - cp -ar ../repos/extra/. . || true + - git add --all + - git commit -m "Woodpecker CI ${CI_COMMIT_SHA} [SKIP CI]" --allow-empty + - git push + when: event: [push] |