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>

+1 -11
+1 -11
.tangled/workflows/deploy.yml
··· 20 20 nixpkgs: 21 21 - go-containerregistry 22 22 - go 23 - - cacert 24 23 25 24 environment: 26 25 IMAGE_REGISTRY: atcr.io ··· 46 45 --password-stdin 47 46 48 47 # Prepare the filesystem layer 49 - mkdir -p staging/etc/ssl/certs 48 + mkdir -p staging 50 49 cp ./app staging/app 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 60 50 tar -cf layer.tar -C staging . 61 51 62 52 # Build from scratch base, append layer, set config, and push