2021-10-30 09:50:23 -03:00
|
|
|
# Scoop Manifests
|
2018-02-12 17:53:39 +00:00
|
|
|
|
2022-10-22 01:30:54 +00:00
|
|
|
After releasing to GitHub, GitLab, or Gitea, GoReleaser can generate and publish a
|
2018-02-12 18:50:03 -02:00
|
|
|
_Scoop App Manifest_ into a repository that you have access to.
|
2018-02-12 17:53:39 +00:00
|
|
|
|
2022-09-17 00:13:09 -03:00
|
|
|
The `scoop` section specifies how the manifest should be created. See the
|
|
|
|
commented example below:
|
2018-02-12 17:53:39 +00:00
|
|
|
|
2020-05-10 18:59:21 -03:00
|
|
|
```yaml
|
2021-12-23 01:52:01 +01:00
|
|
|
# .goreleaser.yaml
|
2018-02-12 17:53:39 +00:00
|
|
|
scoop:
|
2023-04-02 17:16:21 -03:00
|
|
|
# URL which is determined by the given Token (github or gitlab)
|
|
|
|
#
|
|
|
|
# Default:
|
|
|
|
# GitHub: 'https://github.com/<repo_owner>/<repo_name>/releases/download/{{ .Tag }}/{{ .ArtifactName }}'
|
|
|
|
# GitLab: 'https://gitlab.com/<repo_owner>/<repo_name>/-/releases/{{ .Tag }}/downloads/{{ .ArtifactName }}'
|
|
|
|
# Gitea: 'https://gitea.com/<repo_owner>/<repo_name>/releases/download/{{ .Tag }}/{{ .ArtifactName }}'
|
|
|
|
# Templates: allowed
|
2018-08-21 04:06:55 +03:00
|
|
|
url_template: "http://github.mycompany.com/foo/bar/releases/{{ .Tag }}/{{ .ArtifactName }}"
|
|
|
|
|
2018-02-12 17:53:39 +00:00
|
|
|
# Repository to push the app manifest to.
|
|
|
|
bucket:
|
2023-04-02 17:16:21 -03:00
|
|
|
# Repository owner.
|
|
|
|
#
|
|
|
|
# Templates: allowed
|
2018-02-12 17:53:39 +00:00
|
|
|
owner: user
|
2022-11-02 14:54:16 -03:00
|
|
|
|
2023-04-02 17:16:21 -03:00
|
|
|
# Repository name.
|
|
|
|
#
|
|
|
|
# Templates: allowed
|
2018-02-12 17:53:39 +00:00
|
|
|
name: scoop-bucket
|
2022-01-30 22:30:07 -03:00
|
|
|
|
2023-04-02 17:16:21 -03:00
|
|
|
# Optionally a branch can be provided.
|
2022-11-02 14:54:16 -03:00
|
|
|
#
|
2023-04-02 17:16:21 -03:00
|
|
|
# Default: the repository default branch
|
|
|
|
# Templates: allowed
|
2021-10-03 11:25:31 -03:00
|
|
|
branch: main
|
2022-01-30 22:30:07 -03:00
|
|
|
|
2022-09-17 00:13:09 -03:00
|
|
|
# Optionally a token can be provided, if it differs from the token provided
|
|
|
|
# to GoReleaser
|
2022-04-26 16:11:43 +01:00
|
|
|
token: "{{ .Env.SCOOP_TAP_GITHUB_TOKEN }}"
|
2018-02-12 17:53:39 +00:00
|
|
|
|
2023-04-07 11:48:49 -03:00
|
|
|
# Sets up pull request creation instead of just pushing to the given branch.
|
|
|
|
# Make sure the 'branch' property is different from base before enabling
|
|
|
|
# it.
|
|
|
|
#
|
|
|
|
# Since: v1.17
|
|
|
|
pull_request:
|
|
|
|
# Whether to enable it or not.
|
|
|
|
enabled: true
|
|
|
|
|
|
|
|
# Base branch of the PR.
|
|
|
|
#
|
|
|
|
# Default: default repository branch.
|
|
|
|
base: main
|
|
|
|
|
2023-04-30 10:18:13 -03:00
|
|
|
# Clone, create the file, commit and push, to a regular Git repository.
|
|
|
|
#
|
|
|
|
# Notice that this will only have any effect if the given URL is not
|
|
|
|
# empty.
|
|
|
|
#
|
|
|
|
# Since: v1.18
|
|
|
|
git:
|
|
|
|
# The Git URL to push.
|
|
|
|
url: 'ssh://git@myserver.com:repo.git'
|
|
|
|
|
|
|
|
# The SSH private key that should be used to commit to the Git
|
|
|
|
# repository.
|
|
|
|
# This can either be a path or the key contents.
|
|
|
|
#
|
|
|
|
# IMPORTANT: the key must not be password-protected.
|
|
|
|
#
|
|
|
|
# WARNING: do not expose your private key in the configuration file!
|
|
|
|
private_key: '{{ .Env.PRIVATE_KEY_PATH }}'
|
|
|
|
|
|
|
|
# The value to be passed to `GIT_SSH_COMMAND`.
|
|
|
|
# This is mainly used to specify the SSH private key used to pull/push
|
|
|
|
# to the Git URL.
|
|
|
|
#
|
|
|
|
# Default: 'ssh -i {{ .KeyPath }} -o StrictHostKeyChecking=accept-new -F /dev/null'
|
|
|
|
ssh_command: 'ssh -i {{ .Env.KEY }} -o SomeOption=yes'
|
|
|
|
|
2021-06-26 17:14:42 +00:00
|
|
|
# Folder inside the repository to put the scoop.
|
2023-04-04 01:33:04 +00:00
|
|
|
#
|
|
|
|
# Note that while scoop works if the manifests are in a folder,
|
|
|
|
# 'scoop bucket list' will show 0 manifests if they are not in the root
|
|
|
|
# folder.
|
|
|
|
# In short, it's generaly better to leave this empty.
|
2021-06-26 17:14:42 +00:00
|
|
|
folder: Scoops
|
|
|
|
|
2018-02-12 17:53:39 +00:00
|
|
|
# Git author used to commit to the repository.
|
|
|
|
commit_author:
|
|
|
|
name: goreleaserbot
|
2022-05-18 12:12:42 -03:00
|
|
|
email: bot@goreleaser.com
|
2018-02-12 17:53:39 +00:00
|
|
|
|
2020-04-29 13:45:18 -07:00
|
|
|
# The project name and current git tag are used in the format string.
|
2023-04-02 17:16:21 -03:00
|
|
|
#
|
|
|
|
# Templates: allowed
|
2020-04-29 13:45:18 -07:00
|
|
|
commit_msg_template: "Scoop update for {{ .ProjectName }} version {{ .Tag }}"
|
|
|
|
|
2018-02-12 17:53:39 +00:00
|
|
|
# Your app's homepage.
|
|
|
|
homepage: "https://example.com/"
|
|
|
|
|
|
|
|
# Your app's description.
|
|
|
|
description: "Software to create fast and easy drum rolls."
|
|
|
|
|
|
|
|
# Your app's license
|
|
|
|
license: MIT
|
2018-08-25 23:24:42 +03:00
|
|
|
|
2021-03-15 13:19:09 +01:00
|
|
|
# Setting this will prevent goreleaser to actually try to commit the updated
|
|
|
|
# manifest leaving the responsibility of publishing it to the user.
|
|
|
|
# If set to auto, the release will not be uploaded to the scoop bucket
|
|
|
|
# in case there is an indicator for prerelease in the tag e.g. v1.0.0-rc1
|
|
|
|
skip_upload: true
|
|
|
|
|
2018-08-25 23:24:42 +03:00
|
|
|
# Persist data between application updates
|
|
|
|
persist:
|
|
|
|
- "data"
|
|
|
|
- "config.toml"
|
2020-12-05 07:16:32 -08:00
|
|
|
|
|
|
|
# An array of commands to be executed before an application is installed.
|
|
|
|
pre_install: ["Write-Host 'Running preinstall command'"]
|
|
|
|
|
|
|
|
# An array of commands to be executed after an application is installed.
|
|
|
|
post_install: ["Write-Host 'Running postinstall command'"]
|
2022-04-11 22:43:22 -03:00
|
|
|
|
2023-02-22 09:18:44 -03:00
|
|
|
# An array of dependencies.
|
2023-04-02 17:16:21 -03:00
|
|
|
#
|
|
|
|
# Since GoReleaser v1.16
|
2023-02-22 09:18:44 -03:00
|
|
|
depends: ["git", "foo"]
|
|
|
|
|
2023-03-20 20:21:44 +08:00
|
|
|
|
|
|
|
# A two-dimensional array of string, specifies the shortcut values to make available in the startmenu.
|
|
|
|
# The array has to contain a executable/label pair. The third and fourth element are optional.
|
2023-04-02 17:16:21 -03:00
|
|
|
#
|
2023-03-20 20:21:44 +08:00
|
|
|
# Since GoReleaser v1.17.0.
|
|
|
|
shortcuts: [["drumroll.exe", "drumroll"]]
|
|
|
|
|
2022-04-11 22:43:22 -03:00
|
|
|
# GOAMD64 to specify which amd64 version to use if there are multiple versions
|
|
|
|
# from the build section.
|
2023-04-02 17:16:21 -03:00
|
|
|
#
|
|
|
|
# Default: 'v1'
|
2022-04-11 22:43:22 -03:00
|
|
|
goamd64: v3
|
2018-02-12 17:53:39 +00:00
|
|
|
```
|
|
|
|
|
|
|
|
By defining the `scoop` section, GoReleaser will take care of publishing the
|
2022-09-17 00:13:09 -03:00
|
|
|
Scoop app. Assuming that the project name is `drumroll`, and the current tag is
|
2018-02-12 17:53:39 +00:00
|
|
|
`v1.2.3`, the above configuration will generate a `drumroll.json` manifest in
|
|
|
|
the root of the repository specified in the `bucket` section.
|
|
|
|
|
|
|
|
```json
|
|
|
|
{
|
|
|
|
"version": "1.2.3",
|
|
|
|
"architecture": {
|
|
|
|
"64bit": {
|
|
|
|
"url":
|
|
|
|
"https://github.com/user/drumroll/releases/download/1.2.3/drumroll_1.2.3_windows_amd64.tar.gz",
|
2018-09-06 13:20:12 +03:00
|
|
|
"bin": "drumroll.exe",
|
|
|
|
"hash": "86920b1f04173ee08773136df31305c0dae2c9927248ac259e02aafd92b6008a"
|
2018-02-12 17:53:39 +00:00
|
|
|
},
|
|
|
|
"32bit": {
|
|
|
|
"url":
|
|
|
|
"https://github.com/user/drumroll/releases/download/1.2.3/drumroll_1.2.3_windows_386.tar.gz",
|
2018-09-06 13:20:12 +03:00
|
|
|
"bin": "drumroll.exe",
|
|
|
|
"hash": "283faa524ef41987e51c8786c61bb56658a489f63512b32139d222b3ee1d18e6"
|
2018-02-12 17:53:39 +00:00
|
|
|
}
|
|
|
|
},
|
|
|
|
"homepage": "https://example.com/"
|
|
|
|
}
|
|
|
|
```
|
2018-02-12 18:50:03 -02:00
|
|
|
|
|
|
|
Your users can then install your app by doing:
|
|
|
|
|
2020-08-14 18:13:02 -03:00
|
|
|
```sh
|
|
|
|
scoop bucket add org https://github.com/org/repo.git
|
|
|
|
scoop install org/drumroll
|
2018-02-12 18:50:03 -02:00
|
|
|
```
|
|
|
|
|
|
|
|
You can check the
|
|
|
|
[Scoop documentation](https://github.com/lukesampson/scoop/wiki) for more
|
|
|
|
details.
|