From a94b878890a48ee6eafe6b5d61698372a20f419c Mon Sep 17 00:00:00 2001 From: briskt <3172830+briskt@users.noreply.github.com> Date: Tue, 9 Apr 2024 18:15:32 -0600 Subject: [PATCH] the release job needs checkout and setup-go also --- .github/workflows/ci.yml | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 6eaa381..d0c754d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -24,6 +24,12 @@ jobs: needs: test if: startsWith(github.ref, 'refs/tags/') steps: + - uses: actions/checkout@v4 + + - uses: actions/setup-go@v5 + with: + go-version: ${{ matrix.go-version }} + - name: Fetch all tags run: git fetch --force --tags