From 3ee0161c11cb707fb0f202f8aaa6e61736474cae Mon Sep 17 00:00:00 2001 From: Belle Aerni Date: Sat, 7 Jan 2023 13:42:55 -0800 Subject: [PATCH] Small tweak to the preview generator --- .github/workflows/preview.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/preview.yml b/.github/workflows/preview.yml index 788dae5..2a81e55 100644 --- a/.github/workflows/preview.yml +++ b/.github/workflows/preview.yml @@ -17,10 +17,11 @@ jobs: php_version: "8.0" - run: | sudo apt-get install zip -y - zip -r AntCMS.zip src/ + zip -r AntCMS.zip . + working-directory: ./src - uses: ncipollo/release-action@v1 with: - artifacts: "AntCMS.zip" + artifacts: "./src/AntCMS.zip" prerelease: true allowUpdates: true artifactErrorsFailBuild: true