From 51e52c385c34693928c76351c12d144030b85fd8 Mon Sep 17 00:00:00 2001 From: Aaron Janse Date: Sun, 24 May 2020 21:41:39 -0700 Subject: [PATCH 1/2] update installation instructions --- README.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/README.md b/README.md index 24f00bb..9a4fa76 100644 --- a/README.md +++ b/README.md @@ -51,6 +51,16 @@ ### Installation Instructions +###### Binary (recommended) +1. Download the `.tar.gz` for your OS from the Releases tab +2. `tar -zxvf YOUR_FILE.tar.gz` +3. Add the now-extracted `./3mux` to your `$PATH` + +###### Package manager + +[![Packages for 3mux](https://repology.org/badge/vertical-allrepos/3mux.svg)](https://repology.org/project/3mux/versions) + +###### Via `go get` 1. Install Golang 2. `go get github.com/aaronjanse/3mux` 3. Run `3mux` to launch the terminal multiplexer From c4e36e6f16b4626278ee8e37c5e13bdcb04f72b3 Mon Sep 17 00:00:00 2001 From: Aaron Janse Date: Sun, 24 May 2020 22:15:29 -0700 Subject: [PATCH 2/2] add arm to github actions --- .github/workflows/release.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index b95b336..0beaee6 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -11,7 +11,7 @@ jobs: strategy: matrix: goos: [ linux ] - goarch: [ amd64, arm64 ] + goarch: [ amd64, arm64, arm ] steps: - uses: actions/checkout@v2 - uses: wangyoucao577/go-release-action@03b2ba5e80391d00d2939789911b63d63ee965ea