mirror of
https://github.com/Portabase/portabase.git
synced 2026-07-14 11:16:13 +02:00
123 lines
3.6 KiB
YAML
123 lines
3.6 KiB
YAML
name: Docker Publish
|
|
|
|
on:
|
|
workflow_call:
|
|
inputs:
|
|
image_name:
|
|
required: false
|
|
type: string
|
|
default: 'portabase/portabase'
|
|
add_latest:
|
|
required: false
|
|
type: boolean
|
|
default: false
|
|
target:
|
|
required: false
|
|
type: string
|
|
default: 'prod'
|
|
dockerfile:
|
|
required: false
|
|
type: string
|
|
default: './docker/dockerfile/Dockerfile'
|
|
secrets:
|
|
DOCKER_USERNAME:
|
|
required: true
|
|
DOCKER_PASSWORD:
|
|
required: true
|
|
|
|
jobs:
|
|
|
|
build:
|
|
name: Build and push Docker images
|
|
runs-on: ${{ matrix.platform == 'linux/amd64' && 'ubuntu-latest' || matrix.platform == 'linux/arm64' && 'ubuntu-24.04-arm' }}
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
platform: [ linux/amd64, linux/arm64 ]
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Login to Docker
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME_2 }}
|
|
password: ${{ secrets.DOCKER_PASSWORD_2 }}
|
|
|
|
- name: Set image tag
|
|
id: set-tags
|
|
run: |
|
|
REF_NAME=${GITHUB_REF#refs/tags/}
|
|
if [ "${{ matrix.platform }}" = "linux/amd64" ]; then
|
|
IMAGE="${{ inputs.image_name }}:$REF_NAME-amd64"
|
|
else
|
|
IMAGE="${{ inputs.image_name }}:$REF_NAME-arm64"
|
|
fi
|
|
echo "image=$IMAGE" >> $GITHUB_OUTPUT
|
|
|
|
- name: Build and push image
|
|
uses: docker/build-push-action@v6
|
|
with:
|
|
context: .
|
|
file: ${{ inputs.dockerfile }}
|
|
platforms: ${{ matrix.platform }}
|
|
push: true
|
|
tags: ${{ steps.set-tags.outputs.image }}
|
|
target: ${{ inputs.target }}
|
|
|
|
- name: Prepare artifact name
|
|
id: artifact
|
|
run: |
|
|
platform=${{ matrix.platform }}
|
|
echo "safe_platform=${platform//\//-}" >> $GITHUB_OUTPUT
|
|
echo "${{ steps.set-tags.outputs.image }}" > image.txt
|
|
|
|
- uses: actions/upload-artifact@b7c566a772e6b6bfb58ed0dc250532a479d7789f
|
|
with:
|
|
name: image-${{ steps.artifact.outputs.safe_platform }}
|
|
path: image.txt
|
|
if-no-files-found: warn
|
|
compression-level: 6
|
|
overwrite: false
|
|
include-hidden-files: false
|
|
|
|
create-manifest:
|
|
name: Create multi-arch Docker manifest (Portabase)
|
|
runs-on: ubuntu-latest
|
|
needs: build
|
|
steps:
|
|
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
|
|
with:
|
|
name: image-linux-amd64
|
|
path: /tmp/digests/amd64
|
|
|
|
- uses: actions/download-artifact@37930b1c2abaa49bbe596cd826c3c89aef350131
|
|
with:
|
|
name: image-linux-arm64
|
|
path: /tmp/digests/arm64
|
|
|
|
- name: Login to Docker
|
|
uses: docker/login-action@f4ef78c080cd8ba55a85445d5b36e214a81df20a
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME_2 }}
|
|
password: ${{ secrets.DOCKER_PASSWORD_2 }}
|
|
|
|
- name: Create and push manifest list
|
|
working-directory: /tmp/digests
|
|
run: |
|
|
DOCKER_IMAGES="$(cat amd64/image.txt) $(cat arm64/image.txt)"
|
|
REF_NAME=${GITHUB_REF#refs/tags/}
|
|
MANIFEST_IMAGE="${{ inputs.image_name }}:$REF_NAME"
|
|
|
|
docker buildx imagetools create $DOCKER_IMAGES -t $MANIFEST_IMAGE
|
|
docker buildx imagetools inspect $MANIFEST_IMAGE
|
|
|
|
if [ "${{ inputs.add_latest }}" = "true" ]; then
|
|
docker buildx imagetools create $DOCKER_IMAGES -t ${{ inputs.image_name }}:latest
|
|
docker buildx imagetools inspect ${{ inputs.image_name }}:latest
|
|
fi
|
|
|
|
|
|
|
|
|