From 3d48168394c12c599f1540e95331c39e27c0bdfe Mon Sep 17 00:00:00 2001 From: Michael Telatynski <7t3chguy@gmail.com> Date: Tue, 26 Nov 2024 15:11:48 +0000 Subject: [PATCH] We have to make the tar output directory manually Signed-off-by: Michael Telatynski <7t3chguy@gmail.com> --- .github/actions/download-verify-element-tarball/action.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/actions/download-verify-element-tarball/action.yml b/.github/actions/download-verify-element-tarball/action.yml index 665a5af62d..e61b96596b 100644 --- a/.github/actions/download-verify-element-tarball/action.yml +++ b/.github/actions/download-verify-element-tarball/action.yml @@ -10,7 +10,7 @@ inputs: runs: using: composite steps: - - name: Download current version for its old bundles + - name: Download release tarball id: current_download uses: robinraju/release-downloader@a96f54c1b5f5e09e47d9504526e96febd949d4c2 # v1 with: @@ -25,7 +25,9 @@ runs: - name: Extract tarball shell: bash - run: tar xvzf element-*.tar.gz -C webapp --strip-components=1 + run: | + mkdir webapp + tar xvzf element-*.tar.gz -C webapp --strip-components=1 working-directory: ${{ runner.temp }}/download-verify-element-tarball - name: Move webapp to out-file-path