Skip to content

Commit

Permalink
chore: enable build and push
Browse files Browse the repository at this point in the history
  • Loading branch information
p5 authored Dec 26, 2024
1 parent e0bd936 commit b148e1e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/build-kinoite-40.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ jobs:
with:
fedora-version: 40
image-registry: ghcr.io/ublue-os
image-name: kinoite-main
image-name: multiarch-test-kinoite-main
source-image: kinoite
is-gts: true

Expand Down
7 changes: 2 additions & 5 deletions .github/workflows/reusable-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -123,12 +123,9 @@ jobs:
IMAGE_DIGEST: ${{ steps.build-image.outputs.IMAGE_DIGEST }}
run: |
for i in {1..3}; do
echo "podman push --digestfile=/tmp/digestfile ${IMAGE_REGISTRY}/${IMAGE_NAME}@${IMAGE_DIGEST}" && break || sleep $((10 ** i))
podman push --digestfile=/tmp/digestfile ${IMAGE_REGISTRY}/${IMAGE_NAME}@${IMAGE_DIGEST} && break || sleep $((10 ** i))
done
# Temporarily populate the digest file with a dummy value
echo "dummy-digest-${{ matrix.platform }}" > /tmp/digestfile
IMAGE_DIGEST=$(cat /tmp/digestfile)
echo "IMAGE_DIGEST=${IMAGE_DIGEST}" >> $GITHUB_OUTPUT
Expand Down Expand Up @@ -220,7 +217,7 @@ jobs:
IMAGE_REGISTRY: ${{ inputs.image-registry }}
run: |
for tag in $(echo $TAGS | tr ',' '\n'); do
echo "podman manifest push --digestfile=/tmp/digestfile --all=false $MANIFEST $IMAGE_REGISTRY/$tag"
podman manifest push --digestfile=/tmp/digestfile --all=false $MANIFEST $IMAGE_REGISTRY/$tag
done
# Temporarily populate the digest file with a dummy value
Expand Down

0 comments on commit b148e1e

Please sign in to comment.