mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-07 12:05:46 +00:00
Add release-helper.sh to make github releases easier
This commit is contained in:
parent
41a9734d3a
commit
a0f6aa490f
21
release-helper.sh
Normal file
21
release-helper.sh
Normal file
@ -0,0 +1,21 @@
|
|||||||
|
#! /usr/bin/sh
|
||||||
|
#
|
||||||
|
# Small script to help decompressing files from the CI to make manual releases
|
||||||
|
|
||||||
|
set -e
|
||||||
|
|
||||||
|
ouch --version
|
||||||
|
|
||||||
|
rm release -r || true
|
||||||
|
|
||||||
|
ouch decompress ouch-x86_64-pc-windows-msvc.exe.zip --dir release
|
||||||
|
mv release/ouch.exe release/ouch-x86_64-pc-windows-msvc.exe
|
||||||
|
|
||||||
|
ouch decompress ouch-x86_64-apple-darwin.zip --dir release
|
||||||
|
mv release/ouch release/ouch-x86_64-apple-darwin
|
||||||
|
|
||||||
|
ouch decompress ouch-x86_64-unknown-linux-musl.zip --dir release
|
||||||
|
mv release/ouch release/ouch-x86_64-linux-musl
|
||||||
|
|
||||||
|
dragon-drag-and-drop release/*
|
||||||
|
|
Loading…
x
Reference in New Issue
Block a user