Merge branch 'insider'

This commit is contained in:
Baptiste Augrain 2024-02-23 02:00:55 +01:00
commit 9c56656f21
2 changed files with 8 additions and 2 deletions

View file

@ -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

View file

@ -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