about summary refs log tree commit diff
path: root/.gitlab-ci.yml
diff options
context:
space:
mode:
authorVika Shleina <vika@fireburn.ru>2021-07-15 04:32:29 +0300
committerVika <vika@fireburn.ru>2021-07-19 04:57:11 +0300
commitd399fd0bd00c9ea073e5b057de70c9ffdd9356f8 (patch)
treea9dafbeb62fb2aeb56e2d190565c70cd7f4b9d7a /.gitlab-ci.yml
parent93b56879298810d60d121203403e2416f35e4765 (diff)
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.
Diffstat (limited to '.gitlab-ci.yml')
-rw-r--r--.gitlab-ci.yml8
1 files changed, 6 insertions, 2 deletions
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