From 561988139fdb2ba796cf24f452a160fe62a94de8 Mon Sep 17 00:00:00 2001 From: Dom Del Nano Date: Mon, 9 Oct 2023 23:45:55 -0700 Subject: [PATCH] Install go as first step in release job and fix another area of whitespace --- .github/workflows/release.yml | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 736375ce..5e890b40 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -18,15 +18,14 @@ jobs: goreleaser: runs-on: ubuntu-latest steps: - - - name: Checkout - uses: actions/checkout@v2 - - name: Unshallow - run: git fetch --prune --unshallow - name: Set up Go uses: actions/setup-go@v4 with: go-version: 1.20 + - name: Checkout + uses: actions/checkout@v2 + - name: Unshallow + run: git fetch --prune --unshallow - name: Import GPG key id: import_gpg # TODO: move this to HashiCorp namespace or find alternative that is just simple gpg commands