Skip to content

Commit

Permalink
ci-test: Append build Go version to artifact
Browse files Browse the repository at this point in the history
Also, append ".x" to Go version number matrix to ensure the latest
PATCH version is fetched.
  • Loading branch information
anthonyfok committed Aug 23, 2021
1 parent 8efb8c6 commit aef1a88
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/ci-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ jobs:
if: "!contains(github.event.head_commit.message, '[ci skip]') && !contains(github.event.head_commit.message, '[skip ci]')"
strategy:
matrix:
go-version: ['1.15', '1.16', '1.17']
go-version: ['1.15.x', '1.16.x', '1.17.x']
env:
GO111MODULE: on # Needed for github.com/google/go-github/v38

Expand Down Expand Up @@ -48,5 +48,5 @@ jobs:
- name: Upload dh-make-golang test run as artifact
uses: actions/upload-artifact@v2
with:
name: dh-make-golang_test-run
name: dh-make-golang_test-run_go${{ matrix.go-version }}
path: _test-run

0 comments on commit aef1a88

Please sign in to comment.