mirror of
https://github.com/ouch-org/ouch.git
synced 2025-06-08 12:35:41 +00:00
Merge pull request #146 from ouch-org/release-helper
Add release-helper.sh to make github releases easier
This commit is contained in:
commit
486e0da82a
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