From db58d525f6620f2e10fb6d94626a782ef804e1f0 Mon Sep 17 00:00:00 2001 From: Mahan Zendedel DH Date: Sun, 12 Jan 2025 15:56:42 +0400 Subject: [PATCH] feat: add manifest --- .github/workflows/build.yaml | 12 ++++++++---- 1 file changed, 8 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yaml b/.github/workflows/build.yaml index e357a7b5..9bebf3b8 100644 --- a/.github/workflows/build.yaml +++ b/.github/workflows/build.yaml @@ -187,11 +187,15 @@ jobs: uses: actions/download-artifact@v3 with: name: github-outputs -# - name: Unpack Integration Plugin Artifact -# run: | -# tar -xvf github-output.tar + - name: Unpack Integration Plugin Artifact + run: | + tar -xvf github-output.tar + - name: Pack folder content into a zip file for release + run: | + cd github-output + zip -r github-output.zip . - name: Release Integration Plugin uses: softprops/action-gh-release@v2 with: - files: github-output.tar + files: ./github-output/github-output.zip tag_name: ${{ needs.build.outputs.latest_tag }} \ No newline at end of file