Skip to content

Commit fc2ffbd

Browse files
authored
chore: rip out tar wrapping script (#153)
1 parent ed522af commit fc2ffbd

File tree

3 files changed

+1
-58
lines changed

3 files changed

+1
-58
lines changed

.github/actions/build-tarballs/action.yml

+1-20
Original file line numberDiff line numberDiff line change
@@ -27,13 +27,8 @@ runs:
2727

2828
- name: Build tarballs (Windows)
2929
if: ${{ inputs.code-target == 'win32-x64' }}
30-
shell: pwsh
30+
shell: bash
3131
run: |
32-
# Add the scripts directory to PATH to override system tar
33-
$env:PATH = "${{ github.workspace }}\.github\scripts;$env:PATH"
34-
Write-Host "PATH is now: $env:PATH"
35-
Write-Host "Checking for tar-wrapper.ps1:"
36-
Get-ChildItem "${{ github.workspace }}\.github\scripts"
3732
npx oclif pack tarballs --targets=win32-x64 --no-xz
3833
3934
- name: Build tarballs (Linux)
@@ -50,20 +45,6 @@ runs:
5045
npm run build
5146
npx oclif pack tarballs --targets=darwin-arm64 --no-xz
5247
53-
- name: Debug tarball contents (Windows)
54-
if: ${{ inputs.code-target == 'win32-x64' }}
55-
shell: pwsh
56-
run: |
57-
Write-Host "=== Tarball contents ==="
58-
Get-ChildItem "${{ github.workspace }}\dist"
59-
60-
- name: Debug tarball contents (Unix)
61-
if: ${{ inputs.code-target != 'win32-x64' }}
62-
shell: bash
63-
run: |
64-
echo "=== Tarball contents ==="
65-
ls -la ${{ github.workspace }}/dist
66-
6748
- name: Upload tarball artifact
6849
uses: actions/upload-artifact@4cec3d8aa04e39d1a68397de0c4cd6fb9dce8ec1 # v4.6.1
6950
with:

.github/scripts/tar-wrapper.ps1

-36
This file was deleted.

.github/scripts/tar.cmd

-2
This file was deleted.

0 commit comments

Comments
 (0)