Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 10 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -125,6 +125,16 @@ jobs:
with:
tag_name: ${{ needs.version.outputs.new_tag }}
name: Release ${{ needs.version.outputs.new_tag }}
body: |
Download the archive for your platform:

- Linux x86_64: `popcorn-cli-linux.tar.gz`
- Linux aarch64: `popcorn-cli-linux-aarch64.tar.gz`
- macOS Apple Silicon: `popcorn-cli-macos.tar.gz`
- Windows x86_64: `popcorn-cli-windows.zip`

Extract the archive, move `popcorn-cli` into a directory on your `PATH`,
and run `popcorn --version` to confirm the installed version.
files: |
popcorn-cli-linux.tar.gz/popcorn-cli-linux.tar.gz
popcorn-cli-linux-aarch64.tar.gz/popcorn-cli-linux-aarch64.tar.gz
Expand Down
16 changes: 12 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -31,10 +31,18 @@ After installation, restart your terminal (or run `source ~/.bashrc` / `source ~

### Option 2: Manual Installation

1. Download the binary for your OS from [releases](https://github.com/gpu-mode/popcorn-cli/releases/latest)
2. Extract the archive
3. Move the binary to a directory in your PATH
4. Make it executable (Linux/macOS): `chmod +x popcorn-cli`
1. Open the [releases page](https://github.com/gpu-mode/popcorn-cli/releases)
2. Pick the version you want, or use the latest release
3. Download the archive for your platform:
- Linux x86_64: `popcorn-cli-linux.tar.gz`
- Linux aarch64: `popcorn-cli-linux-aarch64.tar.gz`
- macOS Apple Silicon: `popcorn-cli-macos.tar.gz`
- Windows x86_64: `popcorn-cli-windows.zip`
4. Extract the archive, move `popcorn-cli` into a directory on your `PATH`,
and run `popcorn --version` to confirm the installed version.

Older versions are available from the same Releases page by selecting a previous
tag.

### Option 3: Building from source

Expand Down
Loading