mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-17 23:45:59 +00:00
137 lines
3.8 KiB
YAML
137 lines
3.8 KiB
YAML
_templates:
|
|
_community:
|
|
file: build-docker.yaml
|
|
string-replace:
|
|
"<<cd_merged>>": ''
|
|
"<<adjust>>": '--community'
|
|
_premium:
|
|
file: build-docker-pro.yaml
|
|
string-replace:
|
|
"<<cd_merged>>": |
|
|
cd ..
|
|
cd dbgate-merged
|
|
"<<adjust>>": '--premium'
|
|
|
|
name:
|
|
_community: Docker image Community
|
|
_premium: Docker image PREMIUM
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- 'v[0-9]+.[0-9]+.[0-9]+'
|
|
- _community: 'v[0-9]+.[0-9]+.[0-9]+-beta.[0-9]+'
|
|
_premium: 'v[0-9]+.[0-9]+.[0-9]+-premium-beta.[0-9]+'
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
strategy:
|
|
matrix:
|
|
os: [ubuntu-22.04]
|
|
|
|
steps:
|
|
- name: Context
|
|
env:
|
|
GITHUB_CONTEXT: ${{ toJson(github) }}
|
|
run: echo "$GITHUB_CONTEXT"
|
|
- uses: actions/checkout@v2
|
|
with:
|
|
fetch-depth: 1
|
|
|
|
- name: Docker meta
|
|
id: meta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images:
|
|
_community: dbgate/dbgate
|
|
_premium: dbgate/dbgate-premium
|
|
flavor: |
|
|
latest=false
|
|
tags: |
|
|
type=raw,value=beta,enable=${{ contains(github.ref_name, '-docker.') || contains(github.ref_name, '-beta.') }}
|
|
|
|
type=match,pattern=\d+.\d+.\d+,enable=${{ !contains(github.ref_name, '-docker.') && !contains(github.ref_name, '-beta.') }}
|
|
type=raw,value=latest,enable=${{ !contains(github.ref_name, '-docker.') && !contains(github.ref_name, '-beta.') }}
|
|
|
|
- name: Docker alpine meta
|
|
_if: _community
|
|
id: alpmeta
|
|
uses: docker/metadata-action@v4
|
|
with:
|
|
images: |
|
|
dbgate/dbgate
|
|
flavor: |
|
|
latest=false
|
|
tags: |
|
|
type=raw,value=beta-alpine,enable=${{ contains(github.ref_name, '-docker.') || contains(github.ref_name, '-beta.') }}
|
|
|
|
type=match,pattern=\d+.\d+.\d+,suffix=-alpine,enable=${{ !contains(github.ref_name, '-docker.') && !contains(github.ref_name, '-beta.') }}
|
|
type=raw,value=alpine,enable=${{ !contains(github.ref_name, '-docker.') && !contains(github.ref_name, '-beta.') }}
|
|
|
|
- name: Use Node.js 22.x
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: 22.x
|
|
|
|
- _include: checkout-and-merge-pro
|
|
_if: _premium
|
|
|
|
- name: adjustPackageJson
|
|
run: |
|
|
<<cd_merged>>
|
|
node adjustPackageJson <<adjust>>
|
|
|
|
- name: yarn install
|
|
run: |
|
|
<<cd_merged>>
|
|
# yarn --version
|
|
# yarn config set network-timeout 300000
|
|
yarn install
|
|
|
|
- name: setCurrentVersion
|
|
run: |
|
|
<<cd_merged>>
|
|
yarn setCurrentVersion
|
|
|
|
- name: Prepare docker image
|
|
run: |
|
|
<<cd_merged>>
|
|
yarn run prepare:docker
|
|
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v2
|
|
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v2
|
|
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKER_USERNAME }}
|
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
|
|
|
- name: Build and push
|
|
uses: docker/build-push-action@v3
|
|
with:
|
|
push: true
|
|
context:
|
|
_community: ./docker
|
|
_premium: ../dbgate-merged/docker
|
|
tags: ${{ steps.meta.outputs.tags }}
|
|
platforms:
|
|
_community: linux/amd64,linux/arm64,linux/arm/v7
|
|
_premium: linux/amd64,linux/arm64
|
|
|
|
|
|
- name: Build and push alpine
|
|
uses: docker/build-push-action@v3
|
|
_if: _community
|
|
with:
|
|
push: true
|
|
context: ./docker
|
|
file: ./docker/Dockerfile-alpine
|
|
tags: ${{ steps.alpmeta.outputs.tags }}
|
|
platforms: linux/amd64,linux/arm64,linux/arm/v7
|