1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-04-11 11:42:15 +02:00
Carlos Alexandro Becker 6b645926a8
docs: improve docs (#5006)
closes https://github.com/orgs/goreleaser/discussions/5004

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-07-17 10:56:36 -03:00

64 lines
1.4 KiB
Markdown

# Fury - apt and rpm repositories
<!-- md:pro -->
You can easily create `deb` and `yum` repositories on [Fury][fury] using GoReleaser.
## Usage
First, you need to create an account on [Fury][fury] and get a push token.
Then, you need to pass your account name to GoReleaser and have your push token
as an environment variable named `FURY_TOKEN`:
```yaml
# .goreleaser.yaml
furies:
- account: myaccount
```
This will automatically upload all your `deb` and `rpm` files.
## Customization
You can also have plenty of customization options:
```yaml
# goreleaser.yaml
furies:
- # Fury account.
# Config is skipped if empty
account: "{{ .Env.FURY_ACCOUNT }}"
# Skip the announcing feature in some conditions, for instance, when
# publishing patch releases.
# Any value different of 'true' will be considered 'false'.
#
# Templates: allowed.
skip: "{{gt .Patch 0}}"
# Environment variable name to get the push token from.
# You might want to change it if you have multiple Fury configurations for
# some reason.
#
# Default: 'FURY_TOKEN'.
secret_name: MY_ACCOUNT_FURY_TOKEN
# IDs to filter by.
# configurations get uploaded.
ids:
- packages
# Formats to upload.
# Available options are `deb` and `rpm`.
#
# Default: ['deb', 'rpm'].
formats:
- deb
```
[fury]: https://gemfury.com
<!-- md:templates -->