We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 452e2ac commit 7b0fbf8Copy full SHA for 7b0fbf8
1 file changed
.github/workflows/docker.yml
@@ -85,7 +85,8 @@ jobs:
85
PREFIX="ghcr.io/${REPO_OWNER}/${REPO_NAME}:"
86
87
# list all tags possible
88
- for tag in "${{ matrix.config.tag }}"; do
+ tags="${{ matrix.config.tag }}"
89
+ for tag in $tags; do
90
if [[ "$tag" == "cpu" ]]; then
91
TYPE=""
92
else
0 commit comments