diff --git a/.github/workflows/insider-linux.yml b/.github/workflows/insider-linux.yml index 1596b1d..c210df9 100644 --- a/.github/workflows/insider-linux.yml +++ b/.github/workflows/insider-linux.yml @@ -98,13 +98,13 @@ jobs: - name: Compress vscode artifact run: | - tar -cz --exclude='.build/node' --exclude='.git' --exclude='**/node_modules' -f vscode.tar.gz vscode + tar -c --exclude='.build/node' --exclude='.git' --exclude='**/node_modules' -f vscode.tar vscode - name: Upload vscode artifact uses: actions/upload-artifact@v3 with: - name: vscode.tar.gz - path: ./vscode.tar.gz + name: vscode.tar + path: ./vscode.tar retention-days: ${{ needs.check.outputs.SHOULD_DEPLOY == 'yes' && 30 || 1 }} build: @@ -159,7 +159,7 @@ jobs: - name: Download vscode artifact uses: actions/download-artifact@v3 with: - name: vscode.tar.gz + name: vscode.tar - name: Build env: @@ -234,7 +234,7 @@ jobs: - name: Download vscode artifact uses: actions/download-artifact@v3 with: - name: vscode.tar.gz + name: vscode.tar if: env.SHOULD_BUILD_REH != 'no' || github.event.inputs.generate_assets == 'true' - name: Build diff --git a/package_linux_bin.sh b/package_linux_bin.sh index 4c82ece..dac8c79 100755 --- a/package_linux_bin.sh +++ b/package_linux_bin.sh @@ -7,9 +7,7 @@ if [[ "${CI_BUILD}" == "no" ]]; then exit 1 fi -if [[ -f "./vscode.tar.gz" ]]; then - tar -xfz ./vscode.tar.gz . -fi +tar -xf ./vscode.tar . cd vscode || { echo "'vscode' dir not found"; exit 1; } diff --git a/package_linux_reh.sh b/package_linux_reh.sh index 7c8d879..f8dfe50 100755 --- a/package_linux_reh.sh +++ b/package_linux_reh.sh @@ -7,9 +7,7 @@ if [[ "${CI_BUILD}" == "no" ]]; then exit 1 fi -if [[ -f "./vscode.tar.gz" ]]; then - tar -xfz ./vscode.tar.gz . -fi +tar -xf ./vscode.tar . cd vscode || { echo "'vscode' dir not found"; exit 1; }