From aadcee714546d51f4d091a6cb0cf0bbf696ea890 Mon Sep 17 00:00:00 2001 From: Ruben van der Linde Date: Wed, 21 Aug 2024 13:06:57 +0200 Subject: [PATCH] tar packadge to artifact --- .github/workflows/release-workflows.yaml | 10 ++++++++-- 1 file changed, 8 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release-workflows.yaml b/.github/workflows/release-workflows.yaml index 3f4d1d8c..63690e42 100644 --- a/.github/workflows/release-workflows.yaml +++ b/.github/workflows/release-workflows.yaml @@ -87,7 +87,13 @@ jobs: #Step 2: Create the .tar.gz archive - name: Create Tarball run: | - tar -czvf opencatalogi.tar.gz . + tar -czvf packadge.tar.gz . + + - name: Upload Tarball + uses: actions/upload-artifact@v3 + with: + name: packadge + path: packadge.tar.gz # Step 9: Archive the release files - name: Archive Release @@ -112,6 +118,6 @@ jobs: opencatalogi/LICENSE.md opencatalogi/packadge.zip packadge.zip - opencatalogi.tar.gz + packadge.tar.gz # Documentation: https://github.com/marvinpinto/action-automatic-releases # Explanation: This step creates a new release on GitHub, uploading the generated release files, and tagging the release with the calculated version. \ No newline at end of file