repos / pico

pico services - prose.sh, pastes.sh, imgs.sh, feeds.sh, pgs.sh
git clone https://github.com/picosh/pico.git

commit
fe29e7b
parent
1afa8e3
author
Antonio Mika
date
2023-11-09 00:30:30 +0000 UTC
Fix
1 files changed,  +6, -6
M .github/actions/build/action.yml
+6, -6
 1@@ -8,21 +8,21 @@ inputs:
 2     required: true
 3   platforms:
 4     description: The docker platforms to build for
 5-    required: false
 6+    required: true
 7     default: |
 8       linux/amd64
 9       linux/arm64
10   registry:
11     description: The docker registry to use
12-    required: false
13+    required: true
14     default: ghcr.io
15   web:
16     description: Whether or not to build the web image
17-    required: false
18+    required: true
19     default: true
20   ssh:
21     description: Whether or not to build the ssh image
22-    required: false
23+    required: true
24     default: true
25 
26 runs:
27@@ -39,7 +39,7 @@ runs:
28       with:
29         images: ${{ inputs.REGISTRY }}/${{ github.repository }}/${{ inputs.app }}-ssh
30     - name: Build and push web
31-      if: inputs.web
32+      if: inputs.web == true
33       uses: docker/build-push-action@v3
34       with:
35         context: .
36@@ -53,7 +53,7 @@ runs:
37         build-args: |
38           APP=${{ inputs.app }}
39     - name: Build and push ssh
40-      if: inputs.ssh
41+      if: inputs.ssh == true
42       uses: docker/build-push-action@v3
43       with:
44         context: .