Quote Go version to prevent yaml interpreting value as a float (#6634)
This commit is contained in:
parent
ade2bdf564
commit
28214e331d
|
|
@ -14,8 +14,8 @@ jobs:
|
||||||
fail-fast: false
|
fail-fast: false
|
||||||
matrix:
|
matrix:
|
||||||
GO_VERSION:
|
GO_VERSION:
|
||||||
- 1.19.5
|
- "1.19.5"
|
||||||
- 1.20
|
- "1.20"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
permissions:
|
permissions:
|
||||||
contents: write
|
contents: write
|
||||||
|
|
|
||||||
|
|
@ -11,6 +11,12 @@ on:
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
try-release:
|
try-release:
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
GO_VERSION:
|
||||||
|
- "1.19.5"
|
||||||
|
- "1.20"
|
||||||
runs-on: ubuntu-20.04
|
runs-on: ubuntu-20.04
|
||||||
steps:
|
steps:
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
|
@ -20,5 +26,5 @@ jobs:
|
||||||
- name: Build .deb
|
- name: Build .deb
|
||||||
id: build
|
id: build
|
||||||
env:
|
env:
|
||||||
GO_VERSION: 1.19.5
|
GO_VERSION: ${{ matrix.GO_VERSION }}
|
||||||
run: ./tools/make-deb.sh
|
run: ./tools/make-deb.sh
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue