From c31795cd4d622f625f2ee9ff82c9300bceb78dd7 Mon Sep 17 00:00:00 2001 From: Michael Yick Date: Thu, 13 Feb 2025 18:47:56 -0600 Subject: [PATCH] Unfuck the generated release It was grabbing a whole lot of extra junk and didn't put it in the proper format for a wordpress plugin, this should fix it. --- .github/workflows/release.yml | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 0f35a0ebdc..1082287a7c 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -32,11 +32,14 @@ jobs: # Run the build script sh build.sh + # go to root + cd .. + # Create output directory - mkdir -p ../output + mkdir -p output # Create a release of the file mailpoet.zip - zip -r ../output/mailpoet.zip . + zip -r output/mailpoet.zip mailpoet - name: Upload Release uses: https://gitea.com/actions/release-action@main