We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 3619415 commit f101c55Copy full SHA for f101c55
1 file changed
.github/workflows/build.yml
@@ -28,8 +28,8 @@ jobs:
28
fail-fast: false
29
matrix:
30
alpine_version:
31
- - 3.20
32
- - 3.21
+ - '3.20'
+ - '3.21'
33
34
runs-on: ubuntu-latest
35
permissions:
@@ -43,7 +43,7 @@ jobs:
43
- name: Preparation
44
id: prep
45
run: |
46
- ALPINE_VERSION=${{ matrix.alpine_version }}
+ ALPINE_VERSION="${{ matrix.alpine_version }}"
47
BUILD_ARG="${ALPINE_VERSION}"
48
IMAGE_VERSION=$(curl -s "https://api.github.com/repos/${{ github.repository }}/tags" | jq -r '.[0].name')
49
0 commit comments