diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml
index 89e70d8f57f72c8a1a7c6d91a5f6cec31ad1e908..a9bd3f37619cb84ed7cca57a8f39bbc028fe6307 100644
--- a/.gitlab-ci.yml
+++ b/.gitlab-ci.yml
@@ -68,6 +68,18 @@ save:commitIndex:
     - git push origin $CI_COMMIT_REF_NAME || true
     - git branch -D tmpBranch || true
 
+save:copyIndex:
+  image:
+    name: alpine/git:latest
+    entrypoint: [""]
+  stage: save
+  rules:
+    - if: $CI_COMMIT_REF_NAME
+  script:
+    # copy the index
+    - cp .tmp/cards.md .
+
+
 # build
 # ------------------------------------------------------------------------------------