1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2025-03-21 21:07:19 +02:00

69 lines
1.8 KiB
Markdown
Raw Normal View History

2021-10-30 09:50:23 -03:00
# Fury.io (apt and rpm repositories)
!!! success "GoReleaser Pro"
The fury.io publisher is a [GoReleaser Pro feature](/pro/). You might be
able to reproduce some of its behavior on GoReleaser OSS using
[custom publishers](/customization/publishers/).
You can easily create `deb` and `yum` repositories on [fury.io][fury] using GoReleaser.
## Usage
First, you need to create an account on [fury.io][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.io account.
# Config is skipped if empty
account: "{{ .Env.FURY_ACCOUNT }}"
# Skip the announcing feature in some conditions, for instance, when
# publishing patch releases.
# Valid options are `true`, `false`, empty, or a
# template that evaluates to a boolean (`true` or `false`).
#
# Defaults to empty - which means false.
skip: "{{gt .Patch 0}}"
2022-04-20 00:34:24 +02:00
# Environment variable name to get the push token from.
# You might want to change it if you have multiple fury configurations for
# some reason.
#
# Defaults to empty - which means false.
# Defaults to `FURY_TOKEN`.
secret_name: MY_ACCOUNT_FURY_TOKEN
# IDs to filter by.
# Defaults to empty, which means all packages created by all nfpm
# configurations get uploaded.
ids:
- packages
# Formats to upload.
# Available options are `deb` and `rpm`.
# Defaults to `deb` and `rpm`.
formats:
- deb
```
2021-10-30 09:59:18 -03:00
[fury]: https://gemfury.com
2022-04-20 00:34:24 +02:00