From e30eb446b3e8017bec5bd297e5e14990dc2a49b0 Mon Sep 17 00:00:00 2001 From: Kitteh Date: Thu, 15 Apr 2021 13:26:48 +0100 Subject: [PATCH] Improve tar command invocation in github actions. --- .github/workflows/bundle.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/bundle.yml b/.github/workflows/bundle.yml index ab42267..de0dc66 100644 --- a/.github/workflows/bundle.yml +++ b/.github/workflows/bundle.yml @@ -22,8 +22,8 @@ jobs: - name: Build VaultUI run: npx webpack - - name: "Tar up the dist iles" - run: tar caf VaultUI.tar --transform="s/dist\///" dist/* LICENSE + - name: "Tar up the dist files" + run: tar caf VaultUI.tar --transform="s/dist\///" $(find dist -type f) LICENSE - uses: "marvinpinto/action-automatic-releases@latest" with: