Compare commits

...

20 Commits

Author SHA1 Message Date
ThePhaseless
17c1a05d74 fix latest tagging 2025-02-28 19:28:05 +01:00
ThePhaseless
efee40632f readd test 2025-02-28 19:16:47 +01:00
ThePhaseless
ea1cf93456 remove apt caching 2025-02-28 19:16:09 +01:00
ThePhaseless
9a1d0ef218 lowercase registry 2025-02-28 19:01:06 +01:00
ThePhaseless
b9a44b60b6 remove artifact upload 2025-02-28 18:46:48 +01:00
ThePhaseless
56370cc695 remove invalid argument 2025-02-28 18:43:55 +01:00
ThePhaseless
013a7dab90 login before push 2025-02-28 18:36:00 +01:00
ThePhaseless
b4d09657f1 push and then merge 2025-02-28 18:33:30 +01:00
ThePhaseless
7ae50e99dc push before merging 2025-02-28 18:16:39 +01:00
ThePhaseless
64264f325e fix bash 2025-02-28 18:04:23 +01:00
ThePhaseless
a12b406265 echo args 2025-02-28 17:53:04 +01:00
ThePhaseless
a93bf725ef push all tags into one 2025-02-28 17:43:57 +01:00
ThePhaseless
8b4ec8e178 bump buildkit cache 2025-02-28 17:14:40 +01:00
ThePhaseless
56ac51105c tweak labels 2025-02-28 17:09:23 +01:00
ThePhaseless
893fd84ff6 add platform to apt cache name 2025-02-28 16:28:32 +01:00
ThePhaseless
3e94cd6f5f upload apt and uv cache 2025-02-28 16:24:20 +01:00
ThePhaseless
d58826f20b add qemu back 2025-02-28 16:17:54 +01:00
ThePhaseless
2ae7ca35f2 [skip ci] allow sha versions 2025-02-28 16:13:28 +01:00
ThePhaseless
681171d3cf comment out test 2025-02-28 16:11:59 +01:00
ThePhaseless
53bdb29e0a tweaks to tags 2025-02-28 16:11:10 +01:00
3 changed files with 49 additions and 50 deletions

View File

@ -64,23 +64,23 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
# Install the cosign tool except on PR
- name: Install cosign
if: github.event_name != 'pull_request'
uses: sigstore/cosign-installer@v3
- name: Prepare variables
id: vars
run: |
SURFIX=$(echo ${{ matrix.platform }} | cut -d'/' -f2)
echo "SURFIX=$SURFIX" >> $GITHUB_OUTPUT
# Generate a unique local tag for the image
echo "LOCAL_TAG=${{ github.sha }}-$SURFIX" >> $GITHUB_OUTPUT
# Add support for more platforms with QEMU (optional)
# https://github.com/docker/setup-qemu-action
- name:
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
# Set up BuildKit Docker container builder
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Login against a Docker registry except on PR
# Log into registry
- name: Log into registry ${{ env.REGISTRY }}
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
@ -92,39 +92,25 @@ jobs:
id: meta
uses: docker/metadata-action@v5
with:
tags: |
type=ref,event=branch
type=ref,event=pr
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=raw,enable=${{ github.ref_type == 'tag' }}, value=latest
tags: type=raw,value=${{ steps.vars.outputs.LOCAL_TAG }}
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
# Build and push Docker image with platform-specific tag
- name: Build and push Docker image
id: build-and-push
# Build and export Docker image for each platform (without pushing)
- name: Build Docker image
id: build
uses: docker/build-push-action@v6
with:
context: .
pull: true
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}-${{ matrix.platform == 'linux/amd64' && 'amd64' || 'arm64' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
platforms: ${{ matrix.platform }}
cache-from: type=gha,scope=${{ matrix.platform }}
cache-to: type=gha,mode=max,scope=${{ matrix.platform }}
build-args: GITHUB_BUILD=true,VERSION=${{ github.ref_type == 'tag' && github.ref_name || github.sha }}
# Sign the platform specific image
- name: Sign the published Docker image
if: ${{ github.event_name != 'pull_request' }}
env:
TAGS: ${{ steps.meta.outputs.tags }}
DIGEST: ${{ steps.build-and-push.outputs.digest }}
run: echo "${TAGS}" | xargs -I {} cosign sign --yes {}@${DIGEST}
merge:
merge-and-push:
needs: build
runs-on: ubuntu-latest
if: github.event_name != 'pull_request'
@ -137,6 +123,15 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v4
# Install the cosign tool
- name: Install cosign
uses: sigstore/cosign-installer@v3
# Set up Docker Buildx
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
# Log into registry
- name: Log into registry ${{ env.REGISTRY }}
uses: docker/login-action@v3
with:
@ -144,6 +139,7 @@ jobs:
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
# Extract Docker metadata for tagging
- name: Extract Docker metadata
id: meta
uses: docker/metadata-action@v5
@ -154,29 +150,34 @@ jobs:
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
type=semver,pattern={{major}}
type=raw,enable=${{ github.ref_type == 'tag' }}, value=latest
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
- name: Install cosign
uses: sigstore/cosign-installer@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Create and push manifest
# Create manifest lists and push
- name: Create and push manifest lists
run: |
TAGS="${{ steps.meta.outputs.tags }}"
for TAG in $TAGS; do
# Create manifest list and push it
docker buildx imagetools create -t $TAG \
$TAG-amd64 \
$TAG-arm64
args=""
image=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
image=${image,,}
# Create tag arguments
for tag in $TAGS; do
args="$args -t $tag"
done
- name: Install cosign
uses: sigstore/cosign-installer@v3
if [ "${{ github.ref_type }}" == "tag" ]; then
args="$args -t ${image}:latest"
fi
- name: Sign the manifest
echo $args
docker buildx imagetools create $args \
${image}:${{github.sha}}-amd64 \
${image}:${{github.sha}}-arm64
# Sign the manifest
- name: Sign the manifests
env:
TAGS: ${{ steps.meta.outputs.tags }}
run: |

View File

@ -15,10 +15,8 @@ ENV PATH="${HOME}/.local/bin:$PATH"
WORKDIR /app
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
--mount=type=cache,target=/var/lib/apt,sharing=locked \
apt update && \
apt install -y --no-install-recommends --no-install-suggests xauth xvfb scrot wget chromium chromium-driver ca-certificates
RUN apt-get update && \
apt-get install -y --no-install-recommends --no-install-suggests xauth xvfb scrot wget chromium chromium-driver ca-certificates
ADD https://astral.sh/uv/install.sh install.sh
RUN sh install.sh

View File

@ -16,7 +16,7 @@ def get_version_from_env():
"""
version_env = os.getenv("VERSION")
if not version_env or not version_env.startswith("v"):
if not version_env:
return None
return version_env.removeprefix("v")