-
Notifications
You must be signed in to change notification settings - Fork 0
/
rlsr.yml
28 lines (28 loc) · 880 Bytes
/
rlsr.yml
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
releases:
- name: "Release to github"
dist_folder: "./dist"
targets:
github:
owner: "iamd3vil"
repo: "verbump"
checksum:
algorithm: "sha256"
builds:
- command: "just build-linux"
bin_name: "verbump"
artifact: "target/x86_64-unknown-linux-gnu/release/verbump"
name: "verbump-linux-x86_64"
additional_files:
- "README.md"
- command: "just build-windows"
bin_name: "verbump.exe"
artifact: "target/x86_64-pc-windows-gnu/release/verbump.exe"
name: "verbump-windows-x86_64"
additional_files:
- "README.md"
- command: "just build-macos"
bin_name: "verbump_aarch64-apple-darwin"
artifact: "target/aarch64-apple-darwin/release/verbump"
name: "verbump-darwin-aarch64"
additional_files:
- "README.md"