Skip to content

Commit

Permalink
Merge branch 'insider'
Browse files Browse the repository at this point in the history
  • Loading branch information
daiyam committed Feb 23, 2024
2 parents d06c8d5 + f4759fb commit 9c56656
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 2 deletions.
5 changes: 4 additions & 1 deletion .github/workflows/insider-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -103,7 +103,10 @@ jobs:

- name: Compress vscode artifact
run: |
tar -cz --exclude='.build/node' --exclude='**/node_modules' -f vscode.tar.gz vscode
find vscode -type f -not -path "*/node_modules/*" -not -path "vscode/.build/node/*" -not -path "vscode/.git/*" > vscode.txt
echo "vscode/.build/extensions/node_modules" >> vscode.txt
echo "vscode/.git" >> vscode.txt
tar -czf vscode.tar.gz -T vscode.txt
- name: Upload vscode artifact
uses: actions/upload-artifact@v3
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/stable-linux.yml
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,10 @@ jobs:

- name: Compress vscode artifact
run: |
tar -cz --exclude='.build/node' --exclude='**/node_modules' -f vscode.tar.gz vscode
find vscode -type f -not -path "*/node_modules/*" -not -path "vscode/.build/node/*" -not -path "vscode/.git/*" > vscode.txt
echo "vscode/.build/extensions/node_modules" >> vscode.txt
echo "vscode/.git" >> vscode.txt
tar -czf vscode.tar.gz -T vscode.txt
- name: Upload vscode artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit 9c56656

Please sign in to comment.