From 37397b3f5f7784d99662dacd2a5a0db3bd3a87eb Mon Sep 17 00:00:00 2001 From: Marco Bellaccini <24960638+marcobellaccini@users.noreply.github.com> Date: Wed, 17 Jun 2020 18:24:32 +0200 Subject: [PATCH] Fix for release workflow env Workaround for go-version in release workflow --- .github/workflows/release.yml | 9 +++------ 1 file changed, 3 insertions(+), 6 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index aa77cd5..138df89 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -5,9 +5,6 @@ on: tags: - v* # Push events to matching v*, i.e. v1.0, v20.15.10 -env: - go-version: 1.14.x - jobs: build_linux_amd64: name: Build for GNU/Linux amd64 @@ -16,7 +13,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: ${{ go-version }} + go-version: 1.14.x - uses: actions/checkout@v2 @@ -39,7 +36,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: ${{ go-version }} + go-version: 1.14.x - uses: actions/checkout@v2 @@ -62,7 +59,7 @@ jobs: - name: Install Go uses: actions/setup-go@v2 with: - go-version: ${{ go-version }} + go-version: 1.14.x - uses: actions/checkout@v2