From 74ed844cfc6595830ab1ef395de9cb84b10d13d0 Mon Sep 17 00:00:00 2001 From: Carlos Alexandro Becker Date: Thu, 21 Jan 2021 01:04:16 -0300 Subject: [PATCH] docs: improve landing page Signed-off-by: Carlos Alexandro Becker --- www/docs/intro.md | 5 +++++ www/docs/overrides/home.html | 10 +++++++++- www/docs/quick-start.md | 2 +- 3 files changed, 15 insertions(+), 2 deletions(-) diff --git a/www/docs/intro.md b/www/docs/intro.md index 517db215b..431885521 100644 --- a/www/docs/intro.md +++ b/www/docs/intro.md @@ -8,3 +8,8 @@ GoReleaser is built for CI tools, you only need to download and execute it in your build script. Of course, you can also install it locally if you wish. You can also customize your release process through a `.goreleaser.yml` file. + +Once you set ip up, every time you want to create a new release, all you need to do is tag and run +`goreleaser release`: + + diff --git a/www/docs/overrides/home.html b/www/docs/overrides/home.html index 7552f9e73..86dd91f0f 100644 --- a/www/docs/overrides/home.html +++ b/www/docs/overrides/home.html @@ -121,7 +121,15 @@

GoReleaser

-

Release Go projects as fast and easily as possible!

+

Release Go projects as fast and easily as possible!

+

With GoReleaser, you can:

+
    +
  • Cross-compile your Go project
  • +
  • Release to GitHub, GitLab and Gitea
  • +
  • Create Docker images and manifests
  • +
  • Create Linux packages and Homebrew taps
  • +
  • ... and much more!
  • +
Get started diff --git a/www/docs/quick-start.md b/www/docs/quick-start.md index 638004abf..b547d7ed9 100644 --- a/www/docs/quick-start.md +++ b/www/docs/quick-start.md @@ -80,7 +80,7 @@ goreleaser --snapshot Now you can run GoReleaser at the root of your repository: ```sh -goreleaser +goreleaser release ``` That's all!