From 3ad5b8b0ebf72845ca8655c3cbb6c737a14486cc Mon Sep 17 00:00:00 2001 From: Blake Gentry Date: Tue, 27 Aug 2024 21:16:11 -0500 Subject: [PATCH] don't remove .json files from build (need .vite/manifest.json) --- .github/workflows/package-and-release.yaml | 1 - 1 file changed, 1 deletion(-) diff --git a/.github/workflows/package-and-release.yaml b/.github/workflows/package-and-release.yaml index 4647edc..f90fc36 100644 --- a/.github/workflows/package-and-release.yaml +++ b/.github/workflows/package-and-release.yaml @@ -123,7 +123,6 @@ jobs: # * UI source files, .json, .js run: | rm -r .eslintrc.cjs .github .storybook .stylelintignore .vscode node_modules package.json package-lock.json src - find . -type f -name '*.json' -exec rm -f {} + - name: Package module # if: startsWith(github.ref, 'refs/tags/')