mirror of
https://github.com/samanhappy/mcphub.git
synced 2025-12-24 02:39:19 -05:00
77 lines
2.8 KiB
YAML
77 lines
2.8 KiB
YAML
name: Build
|
|
|
|
on:
|
|
push:
|
|
tags: ['v*.*.*']
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
packages: write
|
|
strategy:
|
|
matrix:
|
|
variant: ${{ startsWith(github.ref, 'refs/tags/') && fromJSON('["base", "full"]') || fromJSON('["base"]') }}
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
with:
|
|
fetch-depth: 0
|
|
|
|
- name: Update version from tag
|
|
if: startsWith(github.ref, 'refs/tags/')
|
|
run: |
|
|
VERSION=${GITHUB_REF#refs/tags/v}
|
|
echo "Updating package.json version to $VERSION"
|
|
jq ".version = \"$VERSION\"" package.json > package.json.tmp
|
|
mv package.json.tmp package.json
|
|
echo "Updated version in package.json:"
|
|
grep -m 1 "version" package.json
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
|
|
- name: Login to Docker Hub
|
|
if: endsWith(github.repository, 'mcphub')
|
|
uses: docker/login-action@v3
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Login to GitHub Container Registry
|
|
if: endsWith(github.repository, 'mcphubx')
|
|
uses: docker/login-action@v3
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.actor }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Docker metadata
|
|
id: meta
|
|
uses: docker/metadata-action@v5
|
|
with:
|
|
images: |
|
|
${{ endsWith(github.repository, 'mcphub') && github.repository || '' }}
|
|
${{ endsWith(github.repository, 'mcphubx') && format('ghcr.io/{0}', github.repository) || '' }}
|
|
tags: |
|
|
type=raw,value=edge${{ matrix.variant == 'full' && '-full' || '' }},enable=${{ github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' }}
|
|
type=semver,pattern={{version}}${{ matrix.variant == 'full' && '-full' || '' }},enable=${{ startsWith(github.ref, 'refs/tags/') }}
|
|
type=raw,value=latest${{ matrix.variant == 'full' && '-full' || '' }},enable=${{ startsWith(github.ref, 'refs/tags/') }}
|
|
flavor: |
|
|
latest=false
|
|
|
|
- name: Build and Push Docker Image
|
|
if: endsWith(github.repository, 'mcphub') || endsWith(github.repository, 'mcphubx')
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
context: .
|
|
push: ${{ github.event_name != 'pull_request' }}
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
labels: ${{ steps.meta.outputs.labels }}
|
|
cache-from: type=gha
|
|
cache-to: type=gha,mode=max,scope=${{ matrix.variant }}
|
|
platforms: linux/amd64,linux/arm64
|
|
build-args: |
|
|
INSTALL_EXT=${{ matrix.variant == 'full' && 'true' || 'false' }}
|