From 8b7c92e72b95ac833d2a952dfcc419fc76ea2e38 Mon Sep 17 00:00:00 2001 From: Skydust Date: Sun, 12 Jan 2025 16:51:29 +0100 Subject: [PATCH] Correctly changing the tar folder --- action.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/action.yml b/action.yml index fe82092..adf769f 100644 --- a/action.yml +++ b/action.yml @@ -29,7 +29,7 @@ runs: - name: Packaging App run: | log_info "Packaging app into $(yellow)${{ inputs.customArchiveName }}" - tar -zcf "${{ inputs.customArchiveName }}.tar.gz" "${{ inputs.publishFolder }}" + tar -cvzf "${{ inputs.customArchiveName }}.tar.gz" -C "${{ inputs.publishFolder }}" - name: Publishing App run: | PKG_URL="${{ gitea.server_url }}/api/packages/${{ gitea.repository_owner }}/generic/${{ inputs.appName }}/${{ inputs.version }}/${{ inputs.customArchiveName }}.tar.gz"