From 8e49d694a7f26f989ce35d64d58baedec5378368 Mon Sep 17 00:00:00 2001 From: Andrew Farries Date: Fri, 13 Oct 2023 14:37:55 +0100 Subject: [PATCH] Remove unnecessary env section from release job (#188) goreleaser's template already populates a .Version field so we don't need this (it was unused since the switch to goreleaser). --- .github/workflows/build.yml | 2 -- 1 file changed, 2 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index df62ae68..975afa1e 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -105,8 +105,6 @@ jobs: runs-on: ubuntu-latest needs: [test, lint, examples, license-check] if: startsWith(github.ref, 'refs/tags/') - env: - PGROLL_VERSION: ${{ startsWith(github.ref, 'refs/tags/') && github.ref_name || github.sha }} steps: - uses: actions/checkout@v3 with: