mirror of
https://github.com/cedar2025/Xboard.git
synced 2025-01-23 11:08:13 -05:00
94 lines
2.6 KiB
YAML
94 lines
2.6 KiB
YAML
name: Docker Build and Publish
|
|
|
|
on:
|
|
push:
|
|
branches: ["master"]
|
|
workflow_dispatch:
|
|
|
|
env:
|
|
REGISTRY: ghcr.io
|
|
IMAGE_NAME: ${{ github.repository }}
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
id-token: write
|
|
|
|
steps:
|
|
- name: Checkout code
|
|
uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
with:
|
|
platforms: 'arm64,amd64'
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
with:
|
|
platforms: linux/amd64,linux/arm64
|
|
driver-opts: |
|
|
image=moby/buildkit:latest
|
|
|
|
- name: Login to registry
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ${{ env.REGISTRY }}
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Extract metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME }}
|
|
tags: |
|
|
type=ref,event=branch
|
|
type=sha,format=long
|
|
type=raw,value=new
|
|
|
|
- name: Get version
|
|
id: get_version
|
|
run: echo "version=$(git describe --tags --always)" >> $GITHUB_OUTPUT
|
|
|
|
- name: Update version in app.php
|
|
run: |
|
|
VERSION=$(date '+%Y%m%d')-$(git rev-parse --short HEAD)
|
|
sed -i "s/'version' => '.*'/'version' => '$VERSION'/g" config/app.php
|
|
echo "Updated version to: $VERSION"
|
|
|
|
- name: Build and push
|
|
id: build-and-push
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
push: true
|
|
platforms: linux/amd64,linux/arm64
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max
|
|
tags: |
|
|
${{ env.REGISTRY }}/${{ github.repository_owner }}/xboard:master
|
|
${{ env.REGISTRY }}/${{ github.repository_owner }}/xboard:latest
|
|
${{ env.REGISTRY }}/${{ github.repository_owner }}/xboard
|
|
${{ env.REGISTRY }}/${{ github.repository_owner }}/xboard:${{ steps.get_version.outputs.version }}
|
|
build-args: |
|
|
BUILDKIT_INLINE_CACHE=1
|
|
provenance: false
|
|
|
|
- name: Install cosign
|
|
uses: sigstore/cosign-installer@v3.4.0
|
|
with:
|
|
cosign-release: 'v2.2.2'
|
|
|
|
- name: Sign image
|
|
if: steps.build-and-push.outputs.digest != ''
|
|
env:
|
|
COSIGN_EXPERIMENTAL: 1
|
|
run: |
|
|
echo "${{ steps.meta.outputs.tags }}" | xargs -I {} cosign sign --yes "{}@${{ steps.build-and-push.outputs.digest }}"
|