Skip to content

Commit

Permalink
ci: fix js build artifacts list
Browse files Browse the repository at this point in the history
  • Loading branch information
shumkov committed Nov 3, 2023
1 parent 75753bc commit 436215a
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/tests-build-js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,11 +59,16 @@ jobs:
find . -name '.gitignore' -exec rm -f {} +
echo ".yarn/unplugged" >> .gitignore
echo "target" >> .gitignore
echo "node_modules" >> .gitignore
echo ".nyc_output" >> .gitignore
echo ".idea" >> .gitignore
echo ".ultra.cache.json" >> .gitignore
echo "db/*" >> .gitignore
if: ${{ steps.cache.outputs.cache-hit != 'true' }}

- name: Get modified files
id: diff
run: git diff --name-only
run: git ls-files --others --exclude-standard
if: ${{ steps.cache.outputs.cache-hit != 'true' }}

- name: Create an archive of built files
Expand Down

0 comments on commit 436215a

Please sign in to comment.