www/content/customization/publish/gemfury.md
{{< g_featpro >}}
You can easily create deb and yum repositories on Fury using GoReleaser.
First, you need to create an account on 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:
gemfury:
- account: myaccount
This will automatically upload all your deb and rpm files.
You can also have plenty of customization options:
gemfury:
- # Fury account.
# Config is skipped if empty
account: "{{ .Env.FURY_ACCOUNT }}"
# Skip this configuration in some conditions.
#
# Templates: allowed.
disable: "{{ .IsNightly }}"
# 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 `apk`, `deb`, and `rpm`.
#
# Default: ['apk', deb', 'rpm'].
formats:
- deb
- apk # {{< g_inline_version "v2.7" >}}
{{< g_templates >}}