From 67fc8859cdf73642a7d3745c324ea25ca9333555 Mon Sep 17 00:00:00 2001 From: henryrecker-pingidentity <58565376+henryrecker-pingidentity@users.noreply.github.com> Date: Fri, 2 Feb 2024 13:41:42 -0600 Subject: [PATCH] Add go releaser config (#33) * Add .goreleaser.yml config file * Simplify go config since this project is just a library and doesn't require artifacts --- .goreleaser.yml | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 .goreleaser.yml diff --git a/.goreleaser.yml b/.goreleaser.yml new file mode 100644 index 00000000..777913fd --- /dev/null +++ b/.goreleaser.yml @@ -0,0 +1,7 @@ +before: + hooks: + - go mod tidy +builds: +- skip: true +changelog: + skip: true