File tree Expand file tree Collapse file tree 2 files changed +6
-3
lines changed
Expand file tree Collapse file tree 2 files changed +6
-3
lines changed Original file line number Diff line number Diff line change 77 if : runner.os == 'Windows'
88
99 - run : |
10- curl "https://pkgx.sh/Windows/x86_64.tgz" | tar -xz -C "$PWD\\bin"
10+ Invoke-WebRequest -Uri "https://pkgx.sh/Windows/x86_64.tgz" -OutFile .\\x86_64.tgz
11+ tar xf .\\x86_64.tgz
12+ mv .\\pkgx.exe .\\bin
13+ rm .\\x86_64.tgz
1114
1215 "$PWD\\bin" | Out-File -FilePath $env:GITHUB_PATH -Encoding utf8 -Append
1316
14- Get-ChildItem -Path brewkit -Recurse -Filter *.ts | ForEach-Object { bin\\pkgx deno -q cache $_.FullName }
17+ Get-ChildItem -Path brewkit -Recurse -Filter *.ts | ForEach-Object { .\\ bin\\pkgx deno -q cache $_.FullName }
1518 shell: pwsh
1619 if: runner.os == 'Windows'
1720
Original file line number Diff line number Diff line change 6464 cd $PREFIX
6565 cd ..
6666 for x in README*; do
67- aws s3 cp "$x" "s3://dist.tea.xyz/${{env. PROJECT}} /$x"
67+ aws s3 cp "$x" "s3://dist.tea.xyz/$PROJECT/$x"
6868 done
6969 shell : bash
7070 if : ${{ runner.os != 'Windows' }}
You can’t perform that action at this time.
0 commit comments