From b90ef97c585fd413895cc74508d5d67570e8a8f3 Mon Sep 17 00:00:00 2001 From: sappho Date: Sat, 20 Apr 2024 17:09:35 -0400 Subject: [PATCH] Try making ci upload artifacts... --- .github/workflows/ci.yml | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index d58068a..9deee7d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -162,4 +162,16 @@ jobs: if test ${HTTP_CODE} -ne 200; then exit ${HTTP_CODE} fi - echo "Upload successful!" \ No newline at end of file + echo "Upload successful!" + + - name: Upload a Build Artifact + uses: actions/upload-artifact@v4.3.2 + with: + # Artifact name + # name: # optional, default is artifact + # A file, directory or wildcard pattern that describes what to upload + path: ${{ env.ZIP_FILENAME }} + # The desired behavior if no files are found using the provided path. + if-no-files-found: error + # Duration after which artifact will expire in days. 0 means using default retention. + retention-days: 14