From b9084f3f37b88f89a46286475221b6ab5b46f633 Mon Sep 17 00:00:00 2001 From: Martin Bubel Date: Mon, 22 Jul 2024 11:57:03 +0200 Subject: [PATCH] add artifact extraction to deploy-test --- .github/workflows/test-and-deploy.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/test-and-deploy.yml b/.github/workflows/test-and-deploy.yml index 30316c12..a109cc58 100644 --- a/.github/workflows/test-and-deploy.yml +++ b/.github/workflows/test-and-deploy.yml @@ -269,6 +269,13 @@ jobs: - name: Create dist directory run: mkdir -p dist + - name: Extract tar.gz files + run: | + for artifact in dist/*; do + tar -xzf "$artifact" -C dist + rm "$artifact" + done + - name: Move files from subdirectories run: | for subdirectory in dist/*/; do