hello world render app
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

workaround for buildah

Signed-off-by: softprops <d.tangren@gmail.com>

softprops b2e15505 8670561f

+9 -1
+9 -1
.tangled/workflows/deploy.yml
··· 48 48 # Prepare the filesystem layer 49 49 mkdir -p staging/etc/ssl/certs 50 50 cp ./app staging/app 51 - cp "$NIX_SSL_CERT_FILE" staging/etc/ssl/certs/ca-certificates.crt 51 + CERT_FILE=$(find /nix/store -name 'ca-bundle.crt' -path '*/etc/ssl/certs/*' 2>/dev/null | head -1) 52 + if [ -z "$CERT_FILE" ]; then 53 + CERT_FILE=$(find /nix/store -name 'ca-certificates.crt' 2>/dev/null | head -1) 54 + fi 55 + if [ -z "$CERT_FILE" ]; then 56 + echo "ERROR: Could not find CA certificates in Nix store" 57 + exit 1 58 + fi 59 + cp "$CERT_FILE" staging/etc/ssl/certs/ca-certificates.crt 52 60 tar -cf layer.tar -C staging . 53 61 54 62 # Build from scratch base, append layer, set config, and push