Skip to content

Commit 9bdf992

Browse files
Add PowerShell script for Windows installation (#125)
1 parent 1345519 commit 9bdf992

4 files changed

Lines changed: 459 additions & 2 deletions

File tree

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -50,4 +50,4 @@ jobs:
5050
AWS_SECRET_ACCESS_KEY: ${{ secrets.TIGER_CLI_RELEASES_AWS_SECRET_ACCESS_KEY }}
5151
AWS_REGION: us-east-1
5252
run: |
53-
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} --paths "/latest.txt" "/install.sh"
53+
aws cloudfront create-invalidation --distribution-id ${{ secrets.CLOUDFRONT_DISTRIBUTION_ID }} --paths "/latest.txt" "/install.sh" "/install.ps1"

.goreleaser.yaml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -117,6 +117,8 @@ blobs:
117117
name_template: "latest.txt"
118118
- glob: ./scripts/install.sh
119119
name_template: "install.sh"
120+
- glob: ./scripts/install.ps1
121+
name_template: "install.ps1"
120122

121123
# Homebrew cask configuration
122124
homebrew_casks:

README.md

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,12 +6,18 @@ Tiger CLI is the command-line interface for Tiger Cloud. It provides commands fo
66

77
Multiple installation methods are provided. Choose your preferred method from the options below. If you aren't sure, use the first one!
88

9-
### Install Script
9+
### Install Script (macOS/Linux/WSL)
1010

1111
```bash
1212
curl -fsSL https://cli.tigerdata.com | sh
1313
```
1414

15+
### Install Script (Windows)
16+
17+
```powershell
18+
irm https://cli.tigerdata.com/install.ps1 | iex
19+
```
20+
1521
### Homebrew (macOS/Linux)
1622

1723
```bash

0 commit comments

Comments
 (0)