You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Grab the binary from the github releases (ironically you can use this tool to install itself)
12
12
13
13
### Automated Builds
14
+
This project uses GitHub Actions to automatically build binaries for all supported platforms on every push to the main branch. Pre-releases are created with binaries for:
15
+
- Linux x64
16
+
- Linux ARM64
17
+
- Windows x64
18
+
- macOS x64
19
+
- macOS ARM64 (Apple Silicon)
14
20
15
-
This project uses GitHub Actions to automatically build cross-platform binaries whenever code changes are pushed to the main branch. The build system creates pre-releases with binaries for all supported platforms:
16
-
17
-
| Platform | Architecture | Binary Name |
18
-
|----------|--------------|-------------|
19
-
| Linux | x86_64 |`justinstall-{version}-linux-x64`|
20
-
| Linux | ARM64 |`justinstall-{version}-linux-arm64`|
21
-
| Windows | x86_64 |`justinstall-{version}-windows-x64.exe`|
This creates optimized binaries in the `build/` directory for all supported platforms. The build script uses Bun's native compilation feature for maximum performance and minimal dependencies.
109
-
110
-
### Development
111
-
112
-
For development and testing:
113
-
```bash
114
-
# Run directly with Bun
115
-
bun run index.js --help
116
-
117
-
# Or make executable and run
118
-
chmod +x index.js
119
-
./index.js --help
120
-
```
121
61
122
62
Contributions are welcome! Please feel free to submit a Pull Request.
0 commit comments