From 4764f67780abc5413e8f6abbba8306224f199edd Mon Sep 17 00:00:00 2001 From: Ben Frankel Date: Sat, 27 Jul 2024 02:46:37 -0700 Subject: [PATCH] Fix source assets not being removed in release --- .github/workflows/release.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 40dc40e..9ff4283 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -156,7 +156,7 @@ jobs: - name: Add assets to package run: | - rm -rf '${{ env.ASSETS_DIR }}'/**/*.{aseprite,wav} '${{ env.ASSETS_DIR }}/mockup' + rm -rf '${{ env.ASSETS_DIR }}'/**/*.aseprite '${{ env.ASSETS_DIR }}'/**/*.wav '${{ env.ASSETS_DIR }}/mockup' cp -r '${{ env.ASSETS_DIR }}' '${{ env.OUT_DIR }}' || true # Ignore error if there's nothing to copy - name: Add web content to package (Web)