mirror of
https://github.com/ThePhaseless/Byparr.git
synced 2025-04-04 09:53:45 +08:00
Compare commits
20 Commits
cc7f5ec5f6
...
17c1a05d74
Author | SHA1 | Date | |
---|---|---|---|
![]() |
17c1a05d74 | ||
![]() |
efee40632f | ||
![]() |
ea1cf93456 | ||
![]() |
9a1d0ef218 | ||
![]() |
b9a44b60b6 | ||
![]() |
56370cc695 | ||
![]() |
013a7dab90 | ||
![]() |
b4d09657f1 | ||
![]() |
7ae50e99dc | ||
![]() |
64264f325e | ||
![]() |
a12b406265 | ||
![]() |
a93bf725ef | ||
![]() |
8b4ec8e178 | ||
![]() |
56ac51105c | ||
![]() |
893fd84ff6 | ||
![]() |
3e94cd6f5f | ||
![]() |
d58826f20b | ||
![]() |
2ae7ca35f2 | ||
![]() |
681171d3cf | ||
![]() |
53bdb29e0a |
91
.github/workflows/docker-publish.yml
vendored
91
.github/workflows/docker-publish.yml
vendored
@ -64,23 +64,23 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
# Install the cosign tool except on PR
|
- name: Prepare variables
|
||||||
- name: Install cosign
|
id: vars
|
||||||
if: github.event_name != 'pull_request'
|
run: |
|
||||||
uses: sigstore/cosign-installer@v3
|
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)
|
- name: Set up QEMU
|
||||||
# https://github.com/docker/setup-qemu-action
|
|
||||||
- name:
|
|
||||||
uses: docker/setup-qemu-action@v3
|
uses: docker/setup-qemu-action@v3
|
||||||
|
|
||||||
# Set up BuildKit Docker container builder
|
# Set up BuildKit Docker container builder
|
||||||
- name: Set up Docker Buildx
|
- name: Set up Docker Buildx
|
||||||
uses: docker/setup-buildx-action@v3
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
# Login against a Docker registry except on PR
|
# Log into registry
|
||||||
- name: Log into registry ${{ env.REGISTRY }}
|
- name: Log into registry ${{ env.REGISTRY }}
|
||||||
if: github.event_name != 'pull_request'
|
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
registry: ${{ env.REGISTRY }}
|
registry: ${{ env.REGISTRY }}
|
||||||
@ -92,39 +92,25 @@ jobs:
|
|||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
with:
|
with:
|
||||||
tags: |
|
tags: type=raw,value=${{ steps.vars.outputs.LOCAL_TAG }}
|
||||||
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
|
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
|
|
||||||
# Build and push Docker image with platform-specific tag
|
# Build and export Docker image for each platform (without pushing)
|
||||||
- name: Build and push Docker image
|
- name: Build Docker image
|
||||||
id: build-and-push
|
id: build
|
||||||
uses: docker/build-push-action@v6
|
uses: docker/build-push-action@v6
|
||||||
with:
|
with:
|
||||||
context: .
|
context: .
|
||||||
pull: true
|
pull: true
|
||||||
push: ${{ github.event_name != 'pull_request' }}
|
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 }}
|
labels: ${{ steps.meta.outputs.labels }}
|
||||||
platforms: ${{ matrix.platform }}
|
platforms: ${{ matrix.platform }}
|
||||||
cache-from: type=gha,scope=${{ matrix.platform }}
|
cache-from: type=gha,scope=${{ matrix.platform }}
|
||||||
cache-to: type=gha,mode=max,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 }}
|
build-args: GITHUB_BUILD=true,VERSION=${{ github.ref_type == 'tag' && github.ref_name || github.sha }}
|
||||||
|
|
||||||
# Sign the platform specific image
|
merge-and-push:
|
||||||
- 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:
|
|
||||||
needs: build
|
needs: build
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
if: github.event_name != 'pull_request'
|
if: github.event_name != 'pull_request'
|
||||||
@ -137,6 +123,15 @@ jobs:
|
|||||||
- name: Checkout repository
|
- name: Checkout repository
|
||||||
uses: actions/checkout@v4
|
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 }}
|
- name: Log into registry ${{ env.REGISTRY }}
|
||||||
uses: docker/login-action@v3
|
uses: docker/login-action@v3
|
||||||
with:
|
with:
|
||||||
@ -144,6 +139,7 @@ jobs:
|
|||||||
username: ${{ github.actor }}
|
username: ${{ github.actor }}
|
||||||
password: ${{ secrets.GITHUB_TOKEN }}
|
password: ${{ secrets.GITHUB_TOKEN }}
|
||||||
|
|
||||||
|
# Extract Docker metadata for tagging
|
||||||
- name: Extract Docker metadata
|
- name: Extract Docker metadata
|
||||||
id: meta
|
id: meta
|
||||||
uses: docker/metadata-action@v5
|
uses: docker/metadata-action@v5
|
||||||
@ -154,29 +150,34 @@ jobs:
|
|||||||
type=semver,pattern={{version}}
|
type=semver,pattern={{version}}
|
||||||
type=semver,pattern={{major}}.{{minor}}
|
type=semver,pattern={{major}}.{{minor}}
|
||||||
type=semver,pattern={{major}}
|
type=semver,pattern={{major}}
|
||||||
type=raw,enable=${{ github.ref_type == 'tag' }}, value=latest
|
|
||||||
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
|
|
||||||
- name: Install cosign
|
# Create manifest lists and push
|
||||||
uses: sigstore/cosign-installer@v3
|
- name: Create and push manifest lists
|
||||||
|
|
||||||
- name: Set up Docker Buildx
|
|
||||||
uses: docker/setup-buildx-action@v3
|
|
||||||
|
|
||||||
- name: Create and push manifest
|
|
||||||
run: |
|
run: |
|
||||||
TAGS="${{ steps.meta.outputs.tags }}"
|
TAGS="${{ steps.meta.outputs.tags }}"
|
||||||
for TAG in $TAGS; do
|
args=""
|
||||||
# Create manifest list and push it
|
|
||||||
docker buildx imagetools create -t $TAG \
|
image=${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
||||||
$TAG-amd64 \
|
image=${image,,}
|
||||||
$TAG-arm64
|
|
||||||
|
# Create tag arguments
|
||||||
|
for tag in $TAGS; do
|
||||||
|
args="$args -t $tag"
|
||||||
done
|
done
|
||||||
|
|
||||||
- name: Install cosign
|
if [ "${{ github.ref_type }}" == "tag" ]; then
|
||||||
uses: sigstore/cosign-installer@v3
|
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:
|
env:
|
||||||
TAGS: ${{ steps.meta.outputs.tags }}
|
TAGS: ${{ steps.meta.outputs.tags }}
|
||||||
run: |
|
run: |
|
||||||
|
@ -15,10 +15,8 @@ ENV PATH="${HOME}/.local/bin:$PATH"
|
|||||||
|
|
||||||
WORKDIR /app
|
WORKDIR /app
|
||||||
|
|
||||||
RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
|
RUN apt-get update && \
|
||||||
--mount=type=cache,target=/var/lib/apt,sharing=locked \
|
apt-get install -y --no-install-recommends --no-install-suggests xauth xvfb scrot wget chromium chromium-driver ca-certificates
|
||||||
apt update && \
|
|
||||||
apt 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
|
ADD https://astral.sh/uv/install.sh install.sh
|
||||||
RUN sh install.sh
|
RUN sh install.sh
|
||||||
|
@ -16,7 +16,7 @@ def get_version_from_env():
|
|||||||
|
|
||||||
"""
|
"""
|
||||||
version_env = os.getenv("VERSION")
|
version_env = os.getenv("VERSION")
|
||||||
if not version_env or not version_env.startswith("v"):
|
if not version_env:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return version_env.removeprefix("v")
|
return version_env.removeprefix("v")
|
||||||
|
Loading…
x
Reference in New Issue
Block a user