From d399fd0bd00c9ea073e5b057de70c9ffdd9356f8 Mon Sep 17 00:00:00 2001 From: Vika Shleina Date: Thu, 15 Jul 2021 04:32:29 +0300 Subject: Renamed main executable to kittybox, added tools The new tools are: - kittybox-bulk-import, a bare-bones Micropub client that reads a JSON list of posts and then sends them one by one to the Micropub endpoint - pyindieblog-export, my personal tool which directly connects to Pyindieblog's redis instance and extracts data from it in JSON format suitable for use with kittybox-bulk-import. --- .gitlab-ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) (limited to '.gitlab-ci.yml') diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index fc893bd..6135793 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -41,7 +41,9 @@ build-x86_64-musl: artifacts: expire_in: 30 days paths: - - target/x86_64-unknown-linux-musl/release/kittybox_micropub + - target/x86_64-unknown-linux-musl/release/kittybox + - target/x86_64-unknown-linux-musl/release/kittybox-bulk-import + - target/x86_64-unknown-linux-musl/release/pyindieblog-export build-aarch64-musl: needs: ["test-rust-stable"] @@ -56,7 +58,9 @@ build-aarch64-musl: artifacts: expire_in: 30 days paths: - - target/aarch64-unknown-linux-musl/release/kittybox_micropub + - target/aarch64-unknown-linux-musl/release/kittybox + - target/aarch64-unknown-linux-musl/release/kittybox-bulk-import + - target/aarch64-unknown-linux-musl/release/pyindieblog-export .build-docker: stage: build -- cgit 1.4.1