From 152e76e37c4c62e3799c778e88ad2cd04c282914 Mon Sep 17 00:00:00 2001 From: Matthew Watkins Date: Thu, 23 Nov 2023 15:36:01 +0000 Subject: [PATCH] Feat: Add storage of temporary build artefacts for 14 days Signed-off-by: Matthew Watkins --- .github/workflows/builds.yaml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/builds.yaml b/.github/workflows/builds.yaml index cd992e6d..b2499d82 100644 --- a/.github/workflows/builds.yaml +++ b/.github/workflows/builds.yaml @@ -54,3 +54,10 @@ jobs: - name: "Build with TOX" run: | tox -e build + + - name: Store the build artefacts + uses: actions/upload-artifact@v3 + with: + name: ${{ github.ref_name }} + path: dist/ + retention-days: 14