Try making ci upload artifacts...

This commit is contained in:
sappho
2024-04-20 17:09:35 -04:00
committed by GitHub
parent 4525781cf5
commit b90ef97c58
+13 -1
View File
@@ -162,4 +162,16 @@ jobs:
if test ${HTTP_CODE} -ne 200; then if test ${HTTP_CODE} -ne 200; then
exit ${HTTP_CODE} exit ${HTTP_CODE}
fi fi
echo "Upload successful!" echo "Upload successful!"
- name: Upload a Build Artifact
uses: actions/[email protected]
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