From b19a1c1f7e36104ec3ec03c728562c2e59c80a97 Mon Sep 17 00:00:00 2001 From: Nicolas Carlier Date: Tue, 3 Oct 2023 21:17:17 +0000 Subject: [PATCH] fix(ci): fix release step --- .github/workflows/build.yml | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2748cd6..86fa13e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -32,6 +32,10 @@ jobs: if: github.ref == 'refs/heads/master' with: github-token: ${{ secrets.github_token }} + - name: Set up Go + uses: actions/setup-go@v2 + with: + go-version: 1.21 - name: Distribution run: make distribution if: github.ref == 'refs/heads/master' && steps.changelog.outputs.skipped == 'false'