diff --git a/site/content/docs/Installation/_index.md b/site/content/docs/Installation/_index.md index ad69030ae..37ab33d77 100644 --- a/site/content/docs/Installation/_index.md +++ b/site/content/docs/Installation/_index.md @@ -27,6 +27,8 @@ The following installation options are available: If you like to test the latest unreleased version of Kopia: * [Test Builds](https://github.com/kopia/kopia-test-builds/releases/latest) on GitHub +* [Windows CLI (Scoop)](#windows-cli-installation-using-scoop) offers `test-builds` bucket +* [macOS CLI Homebrew](#macos-cli-using-homebrew) offers `test-builds` TAP * [Debian/Ubuntu Linux (APT Repository)](#linux-installation-using-apt-debian-ubuntu) offers `unstable` channel * [RedHat/CentOS/Fedora Linux (Linux YUM Repository)](#linux-installation-using-rpm-redhat-centos-fedora) offers `unstable` channel * [Source Code](https://github.com/kopia/kopia/) - see [compilation instructions](#compilation-from-source) @@ -52,6 +54,12 @@ Using Scoop, installing Kopia is as easy as: See the [Scoop Website](https://scoop.sh) for more information. +Alternatively, to install the latest unreleased version of Kopia use the following bucket instead: + +```shell +> scoop bucket add kopia https://github.com/kopia/scoop-test-builds.git +``` + ### Windows GUI installation Graphical installer of KopiaUI is available on the [Releases](https://github.com/kopia/kopia/releases/latest) page. @@ -65,8 +73,7 @@ On macOS you can use [Homebrew](https://brew.sh) to install and keep Kopia up-to To install: ```shell -$ brew tap kopia/kopia -$ brew install kopia +$ brew install kopia/kopia/kopia ``` To upgrade Kopia: @@ -75,6 +82,12 @@ To upgrade Kopia: $ brew upgrade kopia ``` +Alternatively, to install the latest unreleased version of Kopia use the following TAP instead: + +```shell +$ brew install kopia/test-builds/kopia +``` + ### macOS GUI installer MacOS package with KopiaUI is available in DMG and ZIP formats on the [Releases](https://github.com/kopia/kopia/releases/latest) page. diff --git a/tools/scoop-publish.sh b/tools/scoop-publish.sh index 670fa31fa..cecd05445 100755 --- a/tools/scoop-publish.sh +++ b/tools/scoop-publish.sh @@ -7,8 +7,7 @@ target_repo=kopia/scoop-bucket source_repo=kopia/kopia if [ "$CI_TAG" == "" ]; then - echo Not publishing Scoop package because CI_TAG is not set. - exit 0 + target_repo=kopia/scoop-test-builds fi if [ "$GITHUB_TOKEN" == "" ]; then