Commit 439b419f authored by Ruben ten Hove's avatar Ruben ten Hove
Browse files

fix: expire temporary artifacts faster

parent d4e24ba1
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -51,6 +51,7 @@
    paths:
      - public
    when: always
    expire_in: 1 day

pages:
  extends: .pages:templates
+1 −0
Original line number Diff line number Diff line
@@ -27,3 +27,4 @@ tbump:
      - .git
    reports:
      dotenv: bumped_files.env
    expire_in: 1 day # Only needed during pipeline
+1 −0
Original line number Diff line number Diff line
@@ -14,4 +14,5 @@ python:build:
  artifacts:
    paths:
      - dist
    expire_in: 1 week
  needs: []
+2 −0
Original line number Diff line number Diff line
@@ -5,11 +5,13 @@
    - |
      if ! test -d "${CI_PROJECT_DIR}/public"; then
        echo "[!] No 'public' dir found, make sure you have something to publish."
        exit 1
      fi
  artifacts:
    paths:
      - public
    when: always
    expire_in: 1 day # Only needed during pipeline

pages:
  extends: .pages