We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7d905ec commit 2403a1eCopy full SHA for 2403a1e
.github/workflows/manual-docker-publish.yml
@@ -56,5 +56,10 @@ jobs:
56
password: ${{ secrets.DOCKERHUB_TOKEN }}
57
58
- name: Check if image should be published
59
- if: ${{ inputs[matrix.image] == true }}
+ 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
+ }}
65
run: echo "Publishing ${{ matrix.image }} image"
0 commit comments