Skip to content

Commit

Permalink
ci(linux): keep extensions node_modules [skip ci]
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam committed Feb 22, 2024
1 parent 6764917 commit 694f559
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/insider-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,8 +103,8 @@ jobs:

- name: Compress vscode artifact
run: |
find vscode/* -not -path "*/node_modules" -not -path "*/node_modules/*" -not -path ".build/node" | sort -r | awk 'a!~"^"$0{a=$0;print}' | sort > vscode.txt
find vscode/.build/extensions/node_modules/* | sort -r | awk 'a!~"^"$0{a=$0;print}' | sort >> vscode.txt
find vscode/* -type f -not -path "*/node_modules" -not -path "*/node_modules/*" -not -path ".build/node" > vscode.txt
find vscode/.build/extensions/node_modules/* -type f >> vscode.txt
tar -czf vscode.tar.gz -T vscode.txt
- name: Upload vscode artifact
Expand Down

0 comments on commit 694f559

Please sign in to comment.