1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
This document describes how RepoPilot is currently distributed and what future channels are planned.
RepoPilot is published on crates.io:
```bash
cargo install repopilot
```
Upgrade an existing install:
```bash
cargo install repopilot --force
```
Crate page: <https://crates.io/crates/repopilot>
```bash
git clone https://github.com/MykytaStel/repopilot.git
cd repopilot
cargo build --release
```
The binary is written to:
```text
./target/release/repopilot
```
Install directly from GitHub:
```bash
cargo install --git https://github.com/MykytaStel/repopilot.git
```
The release workflow builds binaries for the following targets on every `v*` tag:
Binaries and `.sha256` checksum files are attached to GitHub Releases.
The release workflow runs `cargo publish --dry-run` for release tags, but crates.io publishing is manual.
Before publishing:
- ---
See [docs/release.md](release.md) for the full release process.
A Homebrew formula is planned after the release artifact process is stable.