From 149b1780945cfcda1ca2291c45f28f319b5ece2f Mon Sep 17 00:00:00 2001 From: ixje Date: Wed, 29 Nov 2023 13:31:53 +0100 Subject: [PATCH] docs: update deprecated `--skip-publish` release flag (#4449) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Calling `goreleaser release --skip-publish` as according to the [dry run documentation](https://goreleaser.com/quick-start/?h=dry+run#release-flags) gives the following deprecation warning ``` • DEPRECATED: --skip-publish was deprecated in favor of --skip=publish, check https://goreleaser.com/deprecations#-skip for more details ``` This updates the documentation --- www/docs/quick-start.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/www/docs/quick-start.md b/www/docs/quick-start.md index 6d72597a777..2cb32aeba7b 100644 --- a/www/docs/quick-start.md +++ b/www/docs/quick-start.md @@ -125,10 +125,10 @@ goreleaser build --help ### Release Flags -Use the `--skip-publish` flag to skip publishing: +Use the `--skip=publish` flag to skip publishing: ```sh -goreleaser release --skip-publish +goreleaser release --skip=publish ``` You can check the other options by running: