- commit
- 0abe68c
- parent
- 5865af3
- author
- Antonio Mika
- date
- 2023-11-09 01:32:30 +0000 UTC
Another one
1 files changed,
+2,
-2
+2,
-2
1@@ -41,7 +41,7 @@ runs:
2 with:
3 images: ${{ inputs.REGISTRY }}/${{ github.repository }}/${{ inputs.app }}-ssh
4 - name: Build and push web
5- if: ${{ inputs.web }} == 'true'
6+ if: inputs.web == 'true'
7 uses: docker/build-push-action@v3
8 with:
9 context: .
10@@ -55,7 +55,7 @@ runs:
11 build-args: |
12 APP=${{ inputs.app }}
13 - name: Build and push ssh
14- if: ${{ inputs.ssh }} == 'true'
15+ if: inputs.ssh == 'true'
16 uses: docker/build-push-action@v3
17 with:
18 context: .