Skip to content

Commit

Permalink
Merge pull request ouch-org#146 from ouch-org/release-helper
Browse files Browse the repository at this point in the history
Add release-helper.sh to make github releases easier
  • Loading branch information
marcospb19 authored Nov 2, 2021
2 parents 41a9734 + a0f6aa4 commit 486e0da
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions release-helper.sh
Original file line number Diff line number Diff line change
@@ -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/*

0 comments on commit 486e0da

Please sign in to comment.