Compare commits

..
2 Commits
Author SHA1 Message Date
ThePhaseless 332402652d switch to curl 2025-02-28 23:10:09 +01:00
ThePhaseless 061f0d44de fix latest tagging 2025-02-28 19:28:05 +01:00
2 changed files with 5 additions and 5 deletions
+4 -4
View File
@@ -158,7 +158,7 @@ jobs:
TAGS="${{ steps.meta.outputs.tags }}"
args=""
image=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}:${{github.sha}}
image=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
image=${image,,}
# Create tag arguments
@@ -167,14 +167,14 @@ jobs:
done
if [ "${{ github.ref_type }}" == "tag" ]; then
args="$args -t latest"
args="$args -t ${image}:latest"
fi
echo $args
docker buildx imagetools create $args \
${image}-amd64 \
${image}-arm64
${image}:${{github.sha}}-amd64 \
${image}:${{github.sha}}-arm64
# Sign the manifest
- name: Sign the manifests
+1 -1
View File
@@ -16,7 +16,7 @@ ENV PATH="${HOME}/.local/bin:$PATH"
WORKDIR /app
RUN apt-get update && \
apt-get install -y --no-install-recommends --no-install-suggests xauth xvfb scrot wget chromium chromium-driver ca-certificates
apt-get install -y --no-install-recommends --no-install-suggests xauth xvfb scrot curl chromium chromium-driver ca-certificates
ADD https://astral.sh/uv/install.sh install.sh
RUN sh install.sh