Skip to content

Commit 804ead6

Browse files
committed
wip
1 parent 6ea6ca8 commit 804ead6

File tree

2 files changed

+6
-3
lines changed

2 files changed

+6
-3
lines changed

.github/actions/setup/action.yml

Lines changed: 5 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,14 @@ runs:
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

.github/workflows/cd.bottle.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,7 @@ jobs:
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' }}

0 commit comments

Comments
 (0)