From 5a597445e72df796d97595583c024113218f0d06 Mon Sep 17 00:00:00 2001 From: Chris Hager Date: Mon, 12 Aug 2024 07:53:29 +0200 Subject: [PATCH] fix goreleaser --- .github/workflows/release.yaml | 2 +- RELEASE.md | 2 +- config/vars.go | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 959e65c1..b5734455 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -77,7 +77,7 @@ jobs: with: distribution: goreleaser version: latest - args: release --skip-publish --config .goreleaser-build.yaml --rm-dist + args: release --skip=publish --config .goreleaser-build.yaml --rm-dist env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} - name: Upload diff --git a/RELEASE.md b/RELEASE.md index abba2429..90a669f9 100644 --- a/RELEASE.md +++ b/RELEASE.md @@ -66,7 +66,7 @@ git push origin --tags docker pull flashbots/mev-boost:v1.9a1 ``` -## Ask node operators to test this RC (on Goerli or Sepolia or Holesky) +## Ask node operators to test this RC (on Sepolia or Holesky) * Reach out to node operators to help test this release * Collect their sign-off for the release diff --git a/config/vars.go b/config/vars.go index 48f23e73..12f36a2e 100644 --- a/config/vars.go +++ b/config/vars.go @@ -8,7 +8,7 @@ import ( var ( // Version is set at build time (must be a var, not a const!) - Version = "v1.8-rc1" + Version = "v1.8-rc2" // RFC3339Milli is a time format string based on time.RFC3339 but with millisecond precision RFC3339Milli = "2006-01-02T15:04:05.999Z07:00"