Skip to content

Commit

Permalink
test
Browse files Browse the repository at this point in the history
  • Loading branch information
eemmiillyy committed Jul 18, 2024
1 parent eee5a5d commit da2760f
Show file tree
Hide file tree
Showing 2 changed files with 11 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release-cli-assets.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,7 +35,7 @@ jobs:
name: Release CLI assets
strategy:
matrix:
os: [ubuntu-latest]
os: [ubuntu-latest, macos-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
Expand Down Expand Up @@ -129,7 +129,7 @@ jobs:
sha256sum *Release*
mkdir -p /home/runner/work/client-ts/client-ts/cli/dist/apt
echo "$DEBIAN_GPG_KEY_PUBLIC" | base64 --decode > /home/runner/work/client-ts/client-ts/cli/dist/apt/release.key
echo "$DEBIAN_GPG_KEY_PUBLIC" > /home/runner/work/client-ts/client-ts/cli/dist/apt/release.key
env:
DEBIAN_GPG_KEY_PRIVATE: ${{ secrets.DEBIAN_GPG_KEY_PRIVATE }}
DEBIAN_GPG_KEY_PASS: ${{ secrets.DEBIAN_GPG_KEY_PASS }}
Expand Down
18 changes: 9 additions & 9 deletions scripts/upload-promote.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,15 +31,15 @@ async function main() {
await promoteS3(operatingSystem, version);

// Pack windows on linux
if (operatingSystem === 'deb') {
const platform = 'win';

// Upload Tarballs
await uploadS3(platform);
// Upload packages
await uploadS3(platform, { pkg: true });
await promoteS3(platform, version);
}
// if (operatingSystem === 'deb') {
// const platform = 'win';

// // Upload Tarballs
// await uploadS3(platform);
// // Upload packages
// await uploadS3(platform, { pkg: true });
// await promoteS3(platform, version);
// }
}
main();

Expand Down

0 comments on commit da2760f

Please sign in to comment.