Skip to content

Commit

Permalink
Fix for release workflow env
Browse files Browse the repository at this point in the history
Workaround for go-version in release workflow
  • Loading branch information
marcobellaccini authored Jun 17, 2020
1 parent 0e7a454 commit 37397b3
Showing 1 changed file with 3 additions and 6 deletions.
9 changes: 3 additions & 6 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

Expand All @@ -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

Expand All @@ -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

Expand Down

0 comments on commit 37397b3

Please sign in to comment.