Skip to content

Commit 3be0aa6

Browse files
committed
update readme and switch to x86_64 build for windows
1 parent 8ea2b74 commit 3be0aa6

2 files changed

Lines changed: 8 additions & 8 deletions

File tree

.github/workflows/release.yaml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -33,11 +33,11 @@ jobs:
3333
cargo_command: cargo
3434
squash: true
3535

36-
- os_name: Windows-aarch64
36+
- os_name: Windows-x86_64
3737
os: windows-latest
38-
target: aarch64-pc-windows-msvc
38+
target: x86_64-pc-windows-msvc
3939
bin: coman.exe
40-
name: coman-aarch64-pc-windows-msvc.zip
40+
name: coman-x86_64-pc-windows-msvc.zip
4141
cargo_command: cargo
4242
squash: false
4343

README.md

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -31,15 +31,15 @@ Table of contents
3131
### Linux
3232

3333
```shell
34-
curl -LO https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-Linux-x86_64-musl.tar.gz
34+
curl -LO https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-x86_64-unknown-linux-musl.tar.gz
3535
sudo tar -xzf coman-Linux-x86_64-musl.tar.gz -C /usr/local/bin/
3636
sudo chmod +x /usr/local/bin/coman
3737
```
3838

3939
### Macos
4040

4141
```shell
42-
curl -LO https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-Darwin-x86_64.tar.gz
42+
curl -LO https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-x86_64-apple-darwin.tar.gz
4343
sudo tar -xzf coman-Darwin-x86_64.tar.gz -C /usr/local/bin/
4444
sudo chmod +x /usr/local/bin/coman
4545
```
@@ -49,10 +49,10 @@ Run as Admin:
4949

5050
```powershell
5151
# Download the ZIP file
52-
Invoke-WebRequest -Uri "https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-Windows-aarch64.zip" -OutFile "coman-Windows-aarch64.zip"
52+
Invoke-WebRequest -Uri "https://github.com/SwissDataScienceCenter/coman/releases/latest/download/coman-x86_64-pc-windows-msvc.zip" -OutFile "coman-Windows-x86_64.zip"
5353
5454
# Extract the ZIP file
55-
Expand-Archive -Path "coman-Windows-aarch64.zip" -DestinationPath ".\coman_temp" -Force
55+
Expand-Archive -Path "coman-Windows-x86_64.zip" -DestinationPath ".\coman_temp" -Force
5656
5757
# Move the binary to C:\Program Files\coman
5858
New-Item -ItemType Directory -Path "C:\Program Files\coman" -Force
@@ -62,7 +62,7 @@ Move-Item -Path ".\coman_temp\coman.exe" -Destination "C:\Program Files\coman\co
6262
[Environment]::SetEnvironmentVariable("PATH", $env:PATH + ";C:\Program Files\coman", "Machine")
6363
6464
# Clean up temporary files
65-
Remove-Item -Path "coman-Windows-aarch64.zip" -Force
65+
Remove-Item -Path "coman-Windows-x86_64.zip" -Force
6666
Remove-Item -Path ".\coman_temp" -Recurse -Force
6767
```
6868

0 commit comments

Comments
 (0)