Skip to content

Commit

Permalink
GH-245: Removed {{}} from env variable in echo.
Browse files Browse the repository at this point in the history
  • Loading branch information
jirenius committed Jun 10, 2024
1 parent dab8cf2 commit db92e53
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ jobs:
matrix:
go-version: [ '1.20', '1.21' ]
env:
TestVersion: 'go version'
TestVersion: 'go version ${{ matrix.go-version }}'
steps:
- uses: actions/checkout@v4
- name: Set up Go
Expand All @@ -19,7 +19,7 @@ jobs:
go-version: ${{ matrix.go-version }}

- name: Echo go version
run: echo "${{ TestVersion }}"
run: echo "$TestVersion"
- name: Go get
run: go get -t ./...
- name: Build
Expand Down

0 comments on commit db92e53

Please sign in to comment.