Skip to content
This repository was archived by the owner on Oct 3, 2024. It is now read-only.

Commit 913d1d1

Browse files
committed
Fix invalid actions variable format
1 parent 8e3dec6 commit 913d1d1

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

.github/workflows/main.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -34,9 +34,9 @@ jobs:
3434
id: docker_build
3535
uses: docker/build-push-action@v2
3636
with:
37-
file: ./{{ matrix.type }}/${{ matrix.distro }}.Dockerfile
37+
file: ./${{ matrix.type }}/${{ matrix.distro }}.Dockerfile
3838
platforms: linux/amd64,linux/arm64
3939
push: true
4040
tags: |
41-
liteacz/php:8.1-{{ matrix.type }}-{{ matrix.distro }}
42-
liteacz/php:8.1-{{ matrix.type }}-{{ matrix.distro }}-${{ steps.get_version.outputs.VERSION }}
41+
liteacz/php:8.1-${{ matrix.type }}-${{ matrix.distro }}
42+
liteacz/php:8.1-${{ matrix.type }}-${{ matrix.distro }}-${{ steps.get_version.outputs.VERSION }}

0 commit comments

Comments
 (0)