File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ concurrency:
2323jobs :
2424 build_push :
2525 name : Build and push image
26- runs-on : ubuntu-24 .04
26+ runs-on : ubuntu-26 .04
2727
2828 permissions :
2929 contents : read
7070 - name : Build Image
7171 id : build-image
7272 run : |
73- sudo -E $(command -v just) build \
73+ sudo $(command -v just) build \
7474 ${IMAGE_NAME} \
7575 ${DEFAULT_TAG}
7676
8080 - name : Rechunk with Chunkah
8181 id : rechunk
8282 run : |
83- sudo -E $(command -v just) rechunk \
83+ sudo $(command -v just) rechunk \
8484 ${IMAGE_NAME} \
8585 ${DEFAULT_TAG}
8686
@@ -100,7 +100,7 @@ jobs:
100100 env :
101101 ALIAS_TAGS : ${{ steps.gen-build-tags.outputs.alias_tags }}
102102 run : |
103- sudo -E $(command -v just) tag-images \
103+ sudo $(command -v just) tag-images \
104104 "${IMAGE_NAME}" \
105105 "${DEFAULT_TAG}" \
106106 "${ALIAS_TAGS}"
@@ -123,8 +123,8 @@ jobs:
123123 run : |
124124 set -euox pipefail
125125 for tag in ${ALIAS_TAGS}; do
126- sudo -E podman push --digestfile=/tmp/digestfile ${IMAGE_NAME}:${tag} ${IMAGE_REGISTRY}/${IMAGE_NAME}:${tag}
127- sudo -E podman push --digestfile=/tmp/digestfile ${IMAGE_NAME}:${tag} ${IMAGE_REGISTRY}/${IMAGE_NAME}:${tag}
126+ sudo podman push --digestfile=/tmp/digestfile ${IMAGE_NAME}:${tag} ${IMAGE_REGISTRY}/${IMAGE_NAME}:${tag}
127+ sudo podman push --digestfile=/tmp/digestfile ${IMAGE_NAME}:${tag} ${IMAGE_REGISTRY}/${IMAGE_NAME}:${tag}
128128 done
129129
130130 digest=$(< /tmp/digestfile)
You can’t perform that action at this time.
0 commit comments