1
0
mirror of https://github.com/goreleaser/goreleaser.git synced 2024-12-31 01:53:50 +02:00
Commit Graph

1308 Commits

Author SHA1 Message Date
Carlos Alexandro Becker
9bf6730b24
docs: improve /install 2024-07-10 01:27:11 -03:00
Carlos Alexandro Becker
1d9da3f6a8
docs: improvements 2024-07-10 00:03:07 -03:00
Carlos Alexandro Becker
700ff34236
docs: improving docs (#4956)
slowly but steadily fixing a billion warnings
2024-07-08 23:30:10 -03:00
Carlos Alexandro Becker
c81550a5e6
docs: update 2024-07-03 09:35:06 -03:00
Carlos Alexandro Becker
1f1b90025f
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-07-03 09:31:08 -03:00
Carlos Alexandro Becker
8e9f2691ea
docs: improve version error
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-29 19:04:20 -03:00
Go Sueyoshi
55249e73da
docs: fix deprecation keyword in .gitlab-ci.yml (#4964)
`only` keyword in `.gitlab-ci.yml` is now deprecated.

c.f. https://docs.gitlab.com/ee/ci/yaml/#only--except

So I migrated because GitLab now recommends using `rules:if`

c.f.
https://docs.gitlab.com/ee/ci/jobs/job_rules.html#run-jobs-only-in-specific-pipeline-types
2024-06-29 15:53:32 -03:00
Carlos Alexandro Becker
a4643a1fc9
docs: add version error to common errors 2024-06-28 15:09:34 -03:00
Carlos Alexandro Becker
f22596a3e1
docs: wording 2024-06-25 15:16:45 -03:00
Carlos Alexandro Becker
a44ff45fc8
docs: fix margin
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-25 09:29:11 -03:00
Carlos Alexandro Becker
409ce4ffb4
docs: improving home page (#4953)
tried to refresh the home a little bit, not sure if I like it or not.

let me know what you think :)

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-24 23:12:15 -03:00
Carlos Alexandro Becker
3353bba5aa
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-22 11:32:10 -03:00
Carlos Alexandro Becker
86b3c943d0
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-22 11:31:19 -03:00
Carlos Alexandro Becker
7656591088
docs: big cleanup (#4943)
- standarize some notations
- remove since v1.* remarks, as we are now in v2
2024-06-19 11:44:22 -03:00
Fedor Korotkov
10d3647caf
docs: fix missing closing quote (#4949)
With the current example build fails with:

> notarize: macos: template: failed to apply "{{ isEnvSet
\"MACOS_SIGN_P12 }}": unterminated quoted string
2024-06-18 15:41:12 -03:00
Carlos Alexandro Becker
8ad6b3479b
docs: clarify install instructions for apk, deb, and rpm
closes #4923
2024-06-15 16:41:30 -03:00
Carlos Alexandro Becker
6fbe7d5be6
docs: clarify places that might need a PAT
refs #4900
2024-06-15 13:50:11 -03:00
Carlos Alexandro Becker
675629e798
feat: support extra_files in http upload and artifactories (#4940)
closes #4937

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-15 12:21:29 -03:00
Jared Allard
54956c9e80
docs(notarize): use a Application cert not an Installer cert (#4938) 2024-06-15 10:16:20 -03:00
Carlos Alexandro Becker
3e663003b1
feat(blob): allow to upload only extra_files (#4925)
Not happy with the option name tbh... happy to hear suggestions :) 

refs #4921
refs https://github.com/goreleaser/goreleaser/issues/4920

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-12 09:03:36 -03:00
Carlos Alexandro Becker
8244d52f08
docs: clean up nfpm docs 2024-06-11 10:00:38 -03:00
bradenhilton
ac40ce8a80
feat(chocolatey): allow template in copyright, provide ctx.ReleaseNotes (#4858)
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->

This PR allows `chocolateys.copyright` to be templated, and provides
`ctx.ReleaseNotes` as `.Changelog`.

<!-- Why is this change being made? -->

Allowing templates for the copyright will enable, for example:

```yaml
chocolateys:
- ...
  copyright: Copyright (c) 1970-{{ .Now.Format "2006" }} Foo Bar
  ...
```

Without this change:

```xml
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
  <metadata>
    ...
    <copyright>Copyright (c) 1970-{{ .Now.Format &#34;2006&#34; }} Foo Bar</copyright>
    ...
  </metadata>
  ...
</package>
```

With this change:

```xml
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
  <metadata>
    ...
    <copyright>Copyright (c) 1970-2024 Foo Bar</copyright>
    ...
  </metadata>
  ...
</package>
```

---

Providing the release notes means they can be placed directly in the
package page instead of linking to them, for example:

```yaml
chocolateys:
- ...
  release_notes: '{{ .Changelog }}'
  ...
```

Without this change:

```console
❯ goreleaser release --skip=sign,announce,publish --clean
  • starting release...
  ...
  • chocolatey packages
    ⨯ release failed after 4s                  error=template: failed to apply "{{ .Changelog }}": template: failed to apply "{{ .Changelog }}": map has no entry for key "Changelog"
```

With this change:

```xml
<?xml version="1.0" encoding="utf-8"?>
<package xmlns="http://schemas.microsoft.com/packaging/2015/06/nuspec.xsd">
  <metadata>
    ...
    <releaseNotes>## Changelog&#xA;### Other&#xA;* cfa5cbfa5 test&#xA;</releaseNotes>
    ...
  </metadata>
  ...
</package>
```

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

---

These are already supported for WinGet.

There is probably a better way of doing this, and I've probably also
missed something, so feedback is welcome!
2024-06-11 09:29:55 -03:00
Shun Sakai
65a3e06e92
feat(archive): support .tzst suffix (#4870)
See <https://lists.gnu.org/archive/html/info-gnu/2019-01/msg00001.html>:

> When '-a' option is in effect, zstd compression is selected if the
> destination archive name ends in '.zst' or '.tzst'.

---------

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-11 09:25:17 -03:00
Carlos Alexandro Becker
39e62beadc
docs: fix links 2024-06-11 09:22:39 -03:00
Carlos Alexandro Becker
2d54bf0211
feat(notary): allow to sign without notarizing (#4919)
closes #4890

- [x] docs
- [ ] tests
2024-06-11 09:20:48 -03:00
actions-user
1e076de708 chore: auto-update generated files 2024-06-11 02:37:45 +00:00
Jeffrey Cafferata
f588b07adc
docs: added the missing deprecation notices deep link to v2 section (#4922)
Added the missing deprecation notices deep link to v2 section.

> If you keep up with the [deprecation notices][notices], it's likely
you don't need to do anything.

_<https://goreleaser.com/blog/goreleaser-v2/#upgrading>_
2024-06-09 19:31:41 -03:00
Carlos Alexandro Becker
88a49c5c06
docs: improve docker documentation
closes #4913
2024-06-05 22:10:31 -03:00
Carlos Alexandro Becker
44e7e540e3
docs: update jsonschema
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-05 11:16:32 -03:00
Carlos Alexandro Becker
35a5302479
docs: update jsonschema
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-05 11:15:50 -03:00
Carlos Alexandro Becker
3a4b363645
docs: update goreleaser-action version 2024-06-05 08:44:41 -03:00
Carlos Alexandro Becker
b3d9f69726
docs: latest 2024-06-05 08:41:45 -03:00
Carlos Alexandro Becker
8dd7f75f05
docs: fix go install instructions for v2
closes #4907
2024-06-05 08:40:49 -03:00
Carlos Alexandro Becker
50e6c4217e
docs: update schema pro
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-04 22:41:14 -03:00
Carlos Alexandro Becker
d824262135
docs: update 2024-06-04 22:25:35 -03:00
Carlos Alexandro Becker
f9e283d8c4
docs: fix more comment 2024-06-04 22:17:28 -03:00
Carlos Alexandro Becker
9b96bf37f3
docs: fix link 2024-06-04 22:15:47 -03:00
Carlos Alexandro Becker
6560d8c2e3
docs: update cmd docs 2024-06-04 22:09:10 -03:00
Carlos Alexandro Becker
4074c457ac
docs: announce v2 2024-06-04 22:09:10 -03:00
actions-user
c891845839 chore: auto-update generated files 2024-06-05 00:46:45 +00:00
Carlos Alexandro Becker
0e22f07349
docs: update error page 2024-06-04 10:13:11 -03:00
Carlos Alexandro Becker
4d9198cafe
docs: update 2024-06-03 22:12:56 -03:00
Carlos Alexandro Becker
7fd5882003
docs: update users
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-06-03 22:08:50 -03:00
Carlos Alexandro Becker
4fa8df6413
feat!: v2 (#4806)
BREAKING CHANGE

removed all deprecated options, config file should now have a `version:
2` bit


![Dont
Matter](https://github.com/goreleaser/goreleaser/assets/245435/31ece16a-cb70-4e43-9caa-8364e73fbeb9)

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-05-25 14:09:49 -03:00
actions-user
3e40af256c chore: auto-update generated files 2024-05-24 03:15:07 +00:00
nullswan
b3d6460699
fix(docs): version typo (#4878)
According to
https://github.com/goreleaser/goreleaser-action?tab=readme-ov-file#workflow,
there is a typo `varsion` -> `version`
2024-05-18 19:42:42 -03:00
Lio李歐
2023d4bcc6
docs: fix winget default path (#4875)
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->
Update docs for `winget` to show the default past contains the name as
well.

...

<!-- Why is this change being made? -->
Current doc (and sample value) don't contain the name and this doesn't
match the implementation.

...

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

a82491afe4/internal/pipe/winget/winget.go (L165)
...
2024-05-17 08:44:58 -03:00
actions-user
919b132e0d chore: auto-update generated files 2024-05-15 14:11:22 +00:00
actions-user
b58a766d83 chore: auto-update generated files 2024-05-12 17:30:31 +00:00
Carlos Alexandro Becker
2f56643a63
docs: update action docs 2024-05-12 13:47:45 -03:00
Oleksandr Redko
c148106c56
docs: update old Go website links (#4855)
The PR updates the links in the docs, replacing the old `golang.org`
with the new `go.dev`.
2024-05-12 13:22:56 -03:00
Carlos Alexandro Becker
ba7e915cd8
docs: announce v1.26 (#4851)
planning the releaser for saturday!

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-05-11 14:21:51 -03:00
Carlos Alexandro Becker
0481e63fb3
docs: remove mentions to --skip-something flags 2024-05-09 23:18:53 -03:00
Carlos Alexandro Becker
b7b4883420
docs: update 2024-05-09 23:17:11 -03:00
Maxime VISONNEAU
3c0c7148fd
blob: permit skipping the configuration of the Content-Disposition header (#4832)
This change would allow users to disable the `Content-Disposition`
header that is set for blob storage operations. The application will
continue to set a default value for `Content-Disposition` of
`attachment; filename={{.Filename}}` if no value was provided by the
user. However, with this change, users can now specifically disable this
header by setting the value to "-" in the configuration.

We feel this would be a nice solution for this issue:
https://github.com/Homebrew/brew/issues/15604
2024-05-09 22:13:46 -03:00
Shun Sakai
5d98c69f0f
feat(checksum): supports BLAKE2 and SHA-3 (#4850)
If applied, these commits will allow users to use BLAKE2 (BLAKE2b-512
and BLAKE2s-256) and SHA-3 (SHA3-{224,256,384,512}) as checksum
algorithms.

This is because I think it would be useful if these algorithms could be
used as an alternative to SHA-1 and SHA-2. These algorithms are
standardized as [RFC
7693](https://datatracker.ietf.org/doc/html/rfc7693) (BLAKE2) and [FIPS
PUB
202](https://www.nist.gov/publications/sha-3-standard-permutation-based-hash-and-extendable-output-functions)
(SHA-3).

- <https://en.wikipedia.org/wiki/BLAKE_(hash_function)#BLAKE2>
- <https://en.wikipedia.org/wiki/SHA-3>
2024-05-09 21:45:28 -03:00
Carlos Alexandro Becker
9c1bc7caa4
chore: update flake and docs
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-05-08 23:50:24 -03:00
Carlos Alexandro Becker
7b78e195e2
docs: notes on prefixed tags and monorepos 2024-05-08 15:37:59 -03:00
Carlos Alexandro Becker
e538341179
feat(archive): support tar.zst (#4825)
closes #4820
2024-05-03 10:29:55 -03:00
kvendingoldo
b05a62fddc
feat: migrate to new homebrew constuctions (on_arm, on_intel) (#4822)
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->

...

<!-- Why is this change being made? -->
Brew linter says that old constructions can't be used in case of
submitting to brew-core

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

...
2024-05-02 20:43:03 -03:00
Stepan Rabotkin
7982a33a06
fix: telegram default message (#4821)
Hi, there is another fix of default message. I tried this message, now
everything works
2024-05-02 20:37:15 -03:00
Carlos Alexandro Becker
bf31227b4e
fix(nfpm): termux platform (#4812)
closes #4810 
closes  #4809

---------

Co-authored-by: rsteube <rsteube@users.noreply.github.com>
2024-04-28 20:20:53 -03:00
Carlos Alexandro Becker
2cffcc58c5
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-27 11:49:59 -03:00
Carlos Alexandro Becker
919f220e71
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-27 00:37:39 -03:00
Carlos Alexandro Becker
652fd30c69
docs: update repository.md
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-25 21:59:47 -03:00
Carlos Alexandro Becker
39bf6668bc
feat(changelog): custom commit format (#4802)
This allows to use templates for commit messages in the changelog when
using `github`, `gitea`, or `gitlab` as the changelog implementation.

closes #4800

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-24 09:08:20 -03:00
Carlos Alexandro Becker
4015fa32bc
docs: update 2024-04-22 23:51:00 -03:00
Carlos Alexandro Becker
12d236ded2
docs: update 2024-04-22 23:50:42 -03:00
Carlos Alexandro Becker
60f12deae0
docs: update changelog
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-22 23:40:11 -03:00
Bo-Yi Wu
c8488dc825
feat(gitea): implement Changelog function (#4794)
- Add `strings` package import to `gitea.go`
- Implement `Changelog` function in `gitea.go`
- Update `useGitea` constant in `changelog.go`
- Add test for `useGitea` in `changelog_test.go`
- Update `changelog.md` with information about `gitea` customization

ref:

* Server API: https://github.com/go-gitea/gitea/pull/30349
* SDK: https://gitea.com/gitea/go-sdk/pulls/659

---------

Signed-off-by: appleboy <appleboy.tw@gmail.com>
Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-22 23:26:13 -03:00
Carlos Alexandro Becker
faadd02cc1
docs: update bluesky docs
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-22 23:25:07 -03:00
Josh Ghiloni
de72cab5d9
feat(announce): add BlueSky support (#4779)
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->

If applied, this commit will allow users to create BlueSky posts
(skeets) about their Goreleaser-built projects

<!-- Why is this change being made? -->

Because I wanted to post to BlueSky when projects I work on relating to
BlueSky are built!

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

Example post made during unit testing (requires an account to see):
https://bsky.app/profile/jaygles.bsky.social/post/3kpv573c2pc2k

---------

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-22 23:15:26 -03:00
Carlos Alexandro Becker
3cd2e07c68
feat: notarize macos binaries (#4774)
this includes anchore/quill as a pipe to sign and notarize macos
binaries

TODO:

- [x] find a way to test this
- [x] docs
- [x] maybe get someone from anchore to take a look?

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-19 22:27:50 -03:00
Stepan Rabotkin
56e0f79473
fix(telegram): mdv2escape ProjectName by default (#4784)
This pull request fix case when ProjectName contains any not escaped
symbols
2024-04-15 07:57:45 -03:00
Carlos Alexandro Becker
60a1cccf57
feat: isEnvSet tmpl function (#4775)
useful for conditionally enable/disable things based on whether an env
var is set or not
2024-04-12 11:09:18 -03:00
Carlos Tadeu Panato Junior
780a3a40d9
fix: update SBOM generation to add .json as file type (#4781)
- add the file type in the end of the sbom generated file 
- fix wrong value attribution in the doc example

---------

Signed-off-by: cpanato <ctadeu@gmail.com>
2024-04-12 11:04:55 -03:00
lvyaoting
eba43c289e
chore: fix some comments (#4769)
fix some comments

Signed-off-by: lvyaoting <lvyaoting@outlook.com>
2024-04-08 10:08:09 -03:00
John Maguire
7468cf8556
docs: update dirty.md deprecated syntax (#4766)
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->

Change `--skip-validate` in a doc file to `--skip=validate`.

<!-- Why is this change being made? -->

Running the command with `--skip-validate` produces the following
warning:

> • DEPRECATED: --skip-validate was deprecated in favor of
--skip=validate, check https://goreleaser.com/deprecations#-skip for
more details

<!-- # Provide links to any relevant tickets, URLs or other resources
-->
2024-04-07 23:05:46 -03:00
Oleksandr Redko
9b3f514449
docs: description for chocolateys.package_source_url (#4763)
Adds missing description for the `package_source_url` option when
building Chocolatey packages.

This option is present in the config and nuspec:
-
826438b865/pkg/config/config.go (L1428)
-
826438b865/internal/pipe/chocolatey/nuspec.go (L25)

See also
https://docs.chocolatey.org/en-us/guides/create/create-config-package#creating-a-configuration-package
and
https://docs.chocolatey.org/en-us/community-repository/moderation/package-validator/rules/cpmr0040#reasoning.
2024-04-07 23:05:07 -03:00
Oleksandr Redko
f6615b138b
docs: fix typos (#4764)
This PR corrects grammar mistakes in documentation:

- artefacts -> artifacts
- Dockefile -> Dockerfile
- compliation -> compilation
- gorleaser -> goreleaser
- repositores -> repositories
- succesfull -> successful
2024-04-07 23:04:15 -03:00
actions-user
2b1fa09a07 chore: auto-update generated files 2024-04-04 02:29:32 +00:00
Jo
6a7a9ba399
docs: fix deprecation typos (#4750)
The Before part  should be "folder"
2024-04-03 22:51:35 -03:00
Carlos Alexandro Becker
0ff94f13e4
fix: properly skip docker builds of skipped builds (#4747)
refs https://github.com/orgs/goreleaser/discussions/4469 closes
https://github.com/goreleaser/goreleaser/issues/4746

Also made the error better, and added more details to the docs.
2024-04-03 13:52:07 -03:00
Carlos Alexandro Becker
d972be9704
docs: announce v1.25
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-02 23:38:10 -03:00
actions-user
b9dc6dfe1a chore: auto-update generated files 2024-04-03 02:35:12 +00:00
Randy Fay
6353982e33
docs: Minor edits to 'dockerhub' (#4740)
Minor edits to the `dockerhub` docs.

Thanks for all your [help getting this
going](https://discord.com/channels/890434333251362866/1223342596231925852/1223342596231925852)

I note that you already updated a number of things. Here are just a
couple more edits.

Thanks for the great work!
2024-04-02 13:49:56 -03:00
Carlos Alexandro Becker
2c892be4f8
docs: update contributing
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-04-01 15:42:00 -03:00
Bartek Pacia
8d3cd4cef6
fix: run not being truly POSIX-compliant (#4739)
I'm sorry, but my previous PR #4736 contained a mistake and the script
wasn't truly POSIX compliant.

With this PR I fix that mistake.

See relevant shellcheck warning: https://www.shellcheck.net/wiki/SC3010
2024-04-01 14:08:58 -03:00
Carlos Alexandro Becker
fa431f313d
docs: update docs 2024-04-01 10:26:09 -03:00
Carlos Alexandro Becker
7fc93995b8
feat: consistently use directory in property names (#4737)
It was a mess of "folder" x "directory", so changed it all to
"directory".

Closes #4732
2024-04-01 10:01:56 -03:00
Bartek Pacia
5a8b6d41fb
fix: convert run install script to pure POSIX sh (#4736)
The changes are minimal and the benefit is quite nice – this script can
now be used to install GoReleaser on e.g. Alpine Linux without `bash`.


`shellcheck run` and `shfmt run` both report no warnings/errors.
2024-03-31 19:48:38 -03:00
Carlos Alexandro Becker
26c003a076
docs: dockerhub singular
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-29 21:22:49 -03:00
Randy Fay
79aa2fc319
docs: fix typo username in dockerhubs example (#4733)
<!-- If applied, this commit will... -->

Fix typo in dockerhubs example

<!-- Why is this change being made? -->

fix typo

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

...
2024-03-29 17:36:34 -03:00
Carlos Alexandro Becker
1db9347363
feat(archives): format override to 'none' to skip certain goos (#4730)
closes #4644

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-29 16:20:05 -03:00
Hugo Hromic
f0abada909
docs: fix default for build.id attribute (#4734)
Fixes #4731
2024-03-29 16:19:32 -03:00
Carlos Alexandro Becker
e35473423d
docs: fix dockerhub missing images property
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-29 15:54:47 -03:00
Carlos Alexandro Becker
8cd325eb5a
fix: support dir in gomod (#4729)
closes https://github.com/orgs/goreleaser/discussions/4728
2024-03-29 10:27:33 -03:00
Carlos Alexandro Becker
2498ea7029
feat: add metadata to the release (#4714)
this will create a metadata artifact and allow to add them to the
release.

closes #4669
closes #4682

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-26 23:41:41 -03:00
Carlos Alexandro Becker
3687c097cd
feat(winget): sync fork before opening PR
closes https://github.com/goreleaser/goreleaser/issues/4720

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-26 23:34:15 -03:00
Carlos Alexandro Becker
5256f063d0
docs: update github action
refs https://github.com/goreleaser/goreleaser-action/issues/453

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-25 09:58:18 -03:00
Carlos Alexandro Becker
6e0f426339
feat: allow to delete existing artifacts in the release (#4711)
closes #4692
2024-03-19 23:25:42 -03:00
Carlos Alexandro Becker
72a0d9d29f
docs: update users.md
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-18 09:21:59 -03:00
Carlos Alexandro Becker
5073bd1a5f
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-17 21:39:13 -03:00
Carlos Alexandro Becker
54ee014b50
feat: checksums.split (#4707)
closes #4618
closes #4641

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-17 15:16:50 -03:00
Carlos Alexandro Becker
e539e1256c
docs: fix broken links 2024-03-16 11:36:01 -03:00
Oleksandr Redko
df3e799bec
docs(blog): fix broken link (#4704) 2024-03-15 20:29:37 -03:00
Carlos Alexandro Becker
b728f52f68
docs: update sign docs
refs https://github.com/orgs/goreleaser/discussions/4702
2024-03-15 13:16:57 -03:00
Carlos Alexandro Becker
6262ce5433
docs: update nix.md 2024-03-12 10:02:20 -03:00
Carlos Alexandro Becker
85f213c9da
docs: clarify changelog sorting
refs https://github.com/goreleaser/goreleaser/issues/4642
2024-03-08 13:58:02 -03:00
Carlos Alexandro Becker
b31a2acde9
docs: update users
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-03 12:27:41 -03:00
Carlos Alexandro Becker
84e214a809
docs: update 2024-03-03 12:12:10 -03:00
Carlos Alexandro Becker
1a9d3f72c6
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-03-03 11:13:18 -03:00
Carlos Alexandro Becker
1f39bddcb3
docs: update 2024-03-03 10:53:17 -03:00
Jeffrey Cafferata
7baf594a13
docs: sort the GoReleaser configuration YAML code examples (#4652)
I have sorted the GoReleaser configuration YAML code examples as
follows:

```yaml
# This feature is only available in GoReleaser Pro.
# Since: v1.17 (pro)
# Default: .
# Templates: allowed
# Required
```
2024-02-27 09:56:24 -03:00
Carlos Alexandro Becker
4d2bcfdc46
feat(brew): allow to set headers in the url (#4648)
closes  #4647

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-26 17:22:12 -03:00
Carlos Alexandro Becker
0f34ce6d9f
docs: updates 2024-02-20 22:27:42 -03:00
Kirill Nikolaev
ef90821ee7
feat(pipe/release): Mark GitHub releases as non-draft only after all artifacts are uploaded. (#4626)
Previously end-users would see missing artifacts if trying to use latest
version while artifacts are being uploaded.

This currently applies only to GitHub releases. GitLab does not support
drafts, and I don't dare to make the change for Gitea since I don't use
it (and can't test easily).

---------

Co-authored-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-19 12:50:47 +00:00
Carlos Alexandro Becker
42d2db2021
feat(nfpm): compression, fields, and predends on debs (#4632)
refs #4630

<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->

...

<!-- Why is this change being made? -->

...

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

...

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-19 08:51:36 -03:00
Carlos Alexandro Becker
d9e9e82ca7
feat(nfpm): also allow $NFPM_PASSPHRASE (#4633)
refs #4630

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-19 08:51:30 -03:00
David Dymko
fd24a00e47
docs: bump setup-go version (#4638)
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->

This commit updates the GitHub Actions GoReleaser example by upgrading
setup-go from version 4 to version 5. Additionally, it includes cleanup
of the tables to address linting issues that flagged them as
"incorrect".

<!-- Why is this change being made? -->

I updated the setup-go version in the GitHub Actions GoReleaser example
because right after I committed the exampled dependabot flagged the old
version as outdated and suggested an update. I figured it'd be simple to
just bump up the version to keep things current.

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

...
2024-02-19 08:43:37 -03:00
Carlos Alexandro Becker
554ca5f3e0
fix(build): buildmode: pie (#4631)
closes #4629
2024-02-13 12:41:18 -03:00
Carlos Alexandro Becker
b33f14c0fa
fix: better universalbinary message (#4627)
<!--

Hi, thanks for contributing!

Please make sure you read our CONTRIBUTING guide.

Also, add tests and the respective documentation changes as well.

-->


<!-- If applied, this commit will... -->

...

<!-- Why is this change being made? -->

...

<!-- # Provide links to any relevant tickets, URLs or other resources
-->

...

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-12 22:36:21 -03:00
Carlos Alexandro Becker
e43604f4a0
feat: use go 1.22 (#4614)
- use go 1.22

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-09 09:57:38 -03:00
Carlos Alexandro Becker
ec8819a95c
docs: update 2024-02-05 21:43:44 -03:00
Carlos Alexandro Becker
099345f167
ci: do not include nightly in releases.json
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-05 10:19:33 -03:00
Carlos Alexandro Becker
12fe252827
docs: fix link
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-05 10:18:26 -03:00
actions-user
4f2dc3c569 chore: docs auto-update 2024-02-05 12:39:29 +00:00
Carlos Alexandro Becker
00c2ff7337
docs: announce v1.24 (#4602)
v1.24 announcement, release planned for tomorrow.
This also includes the updated docs generated from goreleaser pro source
code.

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-05 09:18:01 -03:00
Carlos Alexandro Becker
87aa3b6251
docs(blog): fixed backlinks, imported last post
refs #3503

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-04 17:36:45 -03:00
Carlos Alexandro Becker
29d55a74f8
docs(blog): import more posts
refs #3503

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-02-04 17:23:04 -03:00
Carlos Alexandro Becker
f62e94528f
docs: format 2024-02-01 22:53:16 -03:00
Carlos Alexandro Becker
46c639bc8b
docs: update gitlab docs
closes #4474
2024-02-01 22:52:40 -03:00
Carlos Alexandro Becker
b294759d95
feat(nfpm): add .Format tmpl var
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-01-31 07:31:21 -03:00
Carlos Alexandro Becker
765d534c2e
feat(nfpm): support libraries (#4587)
This adds `nfpm.libdirs` to allow to set where to put libraries built,
as well as include them in the search for artifacts when building the
package.

closes #4346

---

PS: I'm not sure about the default dirs, let me know what you think!

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-01-31 07:26:25 -03:00
Carlos Alexandro Becker
a4ecc87986
docs: update users.md
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-01-29 10:13:17 -03:00
Carlos Alexandro Becker
dd365c2f23
docs: github changeloger needs tags to be pushed
refs https://github.com/orgs/goreleaser/discussions/4580
2024-01-29 10:03:44 -03:00
Jo
c8c7e3e78a
docs: fix description of AUR directory parameter (#4581) 2024-01-27 08:49:36 -03:00
Carlos Alexandro Becker
2489da3a96
docs: update continue --dist docs
closes #4551

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-01-21 22:16:05 -03:00
Carlos Alexandro Becker
1ba3138c67
feat(tmpl): .GitTreeState and .IsGitClean
Avoids having too much template if blocks inside the configuration file.
2024-01-18 08:07:38 -03:00
Carlos Alexandro Becker
d15dab3a79
docs: little formatting improvements 2024-01-17 09:33:58 -03:00
Carlos Alexandro Becker
5d44ed14fd
feat(tmpl): contains
closes https://github.com/orgs/goreleaser/discussions/4548
2024-01-17 08:52:51 -03:00
Carlos Alexandro Becker
87a237066f
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-01-17 08:35:28 -03:00
Carlos Alexandro Becker
5bff6168f6
docs(blog): import more posts (#4544)
refs #3503

importing using `mediumexporter` and fixing up manually what's wrong.

---------

Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-01-16 08:33:16 -03:00
Ethan Zimbelman
1feae08de7 docs: fix typo in link to nightly releases 2024-01-15 08:49:11 -03:00
Carlos Alexandro Becker
29f30b623e
feat: deprecated changelog.skip in favor of changelog.disable
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-01-14 15:57:44 -03:00
Carlos Alexandro Becker
e41178cf51
docs: add more details to the gon integration
refs #4493
2024-01-14 15:33:34 -03:00
Cédric Fabianski
136b4d5438 docs: update gon link 2024-01-14 15:29:42 -03:00
Carlos Alexandro Becker
325cea7277
docs: update
Signed-off-by: Carlos Alexandro Becker <caarlos0@users.noreply.github.com>
2024-01-14 15:27:28 -03:00
Carlos Alexandro Becker
24722b0a6a
docs: update 2024-01-09 15:04:44 -03:00
Carlos Alexandro Becker
9e02a144ca
docs: document nightly oss install options 2024-01-09 15:04:44 -03:00