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 27404bb5 1ad379ce

+8 -7
+8 -7
.tangled/workflows/deploy.yml
··· 17 17 18 18 environment: 19 19 BUILDAH_ISOLATION: chroot 20 + STORAGE_DRIVER: vfs 20 21 IMAGE_REGISTRY: atcr.io 21 22 IMAGE_USER: softprops.bsky.social 22 23 IMAGE_NAME: hello-render ··· 30 31 - name: Build image 31 32 command: | 32 33 set -e 33 - buildah bud \ 34 + buildah --isolation chroot --storage-driver vfs bud \ 34 35 --tag "${IMAGE_NAME}:latest" \ 35 36 --file "${DOCKERFILE}" \ 36 37 . ··· 40 41 set -e 41 42 FULL="${IMAGE_REGISTRY}/${IMAGE_USER}/${IMAGE_NAME}" 42 43 43 - echo "${DOCKER_APP_PASSWORD}" | buildah login \ 44 + buildah --storage-driver vfs login \ 44 45 -u "${IMAGE_USER}" \ 45 46 --password-stdin \ 46 - "${IMAGE_REGISTRY}" 47 + "${IMAGE_REGISTRY}" <<< "${DOCKER_APP_PASSWORD}" 47 48 48 - buildah tag "${IMAGE_NAME}:latest" "${FULL}:${TANGLED_REF_NAME}" 49 - buildah tag "${IMAGE_NAME}:latest" "${FULL}:latest" 49 + buildah --storage-driver vfs tag "${IMAGE_NAME}:latest" "${FULL}:${TANGLED_REF_NAME}" 50 + buildah --storage-driver vfs tag "${IMAGE_NAME}:latest" "${FULL}:latest" 50 51 51 - buildah push "${FULL}:${TANGLED_REF_NAME}" 52 - buildah push "${FULL}:latest" 52 + buildah --isolation chroot --storage-driver vfs push "${FULL}:${TANGLED_REF_NAME}" 53 + buildah --isolation chroot --storage-driver vfs push "${FULL}:latest"