1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-17 20:47:50 +02:00

docs: updated scoop.sh docs

This commit is contained in:
Carlos Alexandro Becker 2018-02-12 18:50:03 -02:00
parent 633b179a30
commit 8eedabfd67
No known key found for this signature in database
GPG Key ID: E61E2F7DC14AB940
2 changed files with 16 additions and 6 deletions

View File

@ -36,7 +36,7 @@ brew install goreleaser/tap/goreleaser
### Using Scoop
```sh
scoop bucket add goreleaser https://github.com/goreleaser/scoop-bucket.git;
scoop bucket add goreleaser https://github.com/goreleaser/scoop-bucket.git
scoop install goreleaser
```

View File

@ -2,12 +2,11 @@
title: Scoop
---
After releasing to GitHub, GoReleaser can generate and publish a _Scoop App
Manifest_ into a repository that you have access to.
After releasing to GitHub, GoReleaser can generate and publish a
_Scoop App Manifest_ into a repository that you have access to.
The `scoop` section specifies how the manifest should be created. You can check
the [Scoop documentation](https://github.com/lukesampson/scoop/wiki) for more
details.
The `scoop` section specifies how the manifest should be created. See
the commented example bellow:
```yml
# .goreleaser.yml
@ -59,3 +58,14 @@ the root of the repository specified in the `bucket` section.
"homepage": "https://example.com/"
}
```
Your users can then install your app by doing:
```sh
scoop bucket add app https://github.com/org/repo.git
scoop install app
```
You can check the
[Scoop documentation](https://github.com/lukesampson/scoop/wiki) for more
details.