From 9c3f6b8ce92a75842c612a1eb6c8cd248131e6b4 Mon Sep 17 00:00:00 2001 From: Mark McDonnell Date: Tue, 3 Jan 2023 17:39:40 +0000 Subject: [PATCH] v4.6.0 (#749) EDIT: Force pushed fix for .goreleaser.yml to main branch. --- .github/workflows/tag_release.yml | 3 ++- .goreleaser.yml | 12 +++++++++--- CHANGELOG.md | 16 ++++++++++++++++ 3 files changed, 27 insertions(+), 4 deletions(-) diff --git a/.github/workflows/tag_release.yml b/.github/workflows/tag_release.yml index bae2f611e..b154de363 100644 --- a/.github/workflows/tag_release.yml +++ b/.github/workflows/tag_release.yml @@ -41,7 +41,8 @@ jobs: with: # goreleaser version (NOT goreleaser-action version) # update inline with the Makefile - version: latest + # version: latest + version: v1.13.1 args: release --rm-dist env: AUR_KEY: '${{ github.workspace }}/aur_key' diff --git a/.goreleaser.yml b/.goreleaser.yml index 557b73d23..f969ced9a 100644 --- a/.goreleaser.yml +++ b/.goreleaser.yml @@ -38,12 +38,18 @@ builds: post: - cmd: "scripts/documentation.sh {{ .Path }}" # https://goreleaser.com/customization/archive/ -# NOTE:Default `format` is tar.gz archives: - - builds: [macos, linux, windows] - name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" + - builds: + - macos + - linux + - windows files: - none* # https://goreleaser.com/customization/archive/#packaging-only-the-binaries + format: tar.gz + format_overrides: + - goos: windows + format: zip + name_template: "{{ .ProjectName }}_v{{ .Version }}_{{ .Os }}-{{ .Arch }}{{ if .Arm }}v{{ .Arm }}{{ end }}" wrap_in_directory: false aurs: - diff --git a/CHANGELOG.md b/CHANGELOG.md index 394839a98..2259f916c 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,21 @@ # Changelog +## [v4.6.0](https://github.com/fastly/cli/releases/tag/v4.6.0) (2023-01-03) + +[Full Changelog](https://github.com/fastly/cli/compare/v4.5.0...v4.6.0) + +**Bug fixes:** + +* vcl/snippet: pass AllowActiveLocked if --dynamic was passed [#742](https://github.com/fastly/cli/pull/742) + +**Dependencies:** + +* Bump goreleaser/goreleaser-action from 3 to 4 [#746](https://github.com/fastly/cli/pull/746) + +**Enhancements:** + +* Use DevHub endpoint for acquiring CLI/Viceroy metadata [#739](https://github.com/fastly/cli/pull/739) + ## [v4.5.0](https://github.com/fastly/cli/releases/tag/v4.5.0) (2022-12-15) [Full Changelog](https://github.com/fastly/cli/compare/v4.4.1...v4.5.0)