Skip to content

Commit

Permalink
ci: update release function
Browse files Browse the repository at this point in the history
  • Loading branch information
tsirysndr committed Oct 30, 2024
1 parent 58a38fe commit a492bb7
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .fluentci/plugin/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -67,28 +67,28 @@ pub fn release(_args: String) -> FnResult<String> {
"release",
"upload",
"$TAG",
"target/release/rockbox-${TARGET}.tar.gz",
"target/release/rockbox_${TARGET}.tar.gz",
])?
.with_exec(vec![
"gh",
"release",
"upload",
"$TAG",
"target/release/rockbox-${TARGET}.tar.gz.sha256",
"target/release/rockbox_${TARGET}.tar.gz.sha256",
])?
.with_exec(vec![
"gh",
"release",
"upload",
"$TAG",
"zig-out/bin/rockboxd-${TARGET}.tar.gz",
"zig-out/bin/rockboxd_${TARGET}.tar.gz",
])?
.with_exec(vec![
"gh",
"release",
"upload",
"$TAG",
"zig-out/bin/rockboxd-${TARGET}.tar.gz.sha256",
"zig-out/bin/rockboxd_${TARGET}.tar.gz.sha256",
])?
.with_exec(vec![
"gh",
Expand Down

0 comments on commit a492bb7

Please sign in to comment.