Skip to content

Commit 2403a1e

Browse files
authored
Update manual-docker-publish.yml
1 parent 7d905ec commit 2403a1e

File tree

1 file changed

+6
-1
lines changed

1 file changed

+6
-1
lines changed

.github/workflows/manual-docker-publish.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,5 +56,10 @@ jobs:
5656
password: ${{ secrets.DOCKERHUB_TOKEN }}
5757

5858
- name: Check if image should be published
59-
if: ${{ inputs[matrix.image] == true }}
59+
if: ${{
60+
(matrix.image == 'studio-frontend' && inputs.studio_frontend) ||
61+
(matrix.image == 'studio-backend' && inputs.studio_backend) ||
62+
(matrix.image == 'app-frontend' && inputs.app_frontend) ||
63+
(matrix.image == 'app-backend' && inputs.app_backend)
64+
}}
6065
run: echo "Publishing ${{ matrix.image }} image"

0 commit comments

Comments
 (0)