-
-
Notifications
You must be signed in to change notification settings - Fork 6
66 lines (57 loc) · 2.21 KB
/
Copy pathdocker-publish.yml
File metadata and controls
66 lines (57 loc) · 2.21 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
name: Docker
on:
push:
tags: [ 'v*' ]
workflow_dispatch:
env:
REGISTRY: ghcr.io
IMAGE_NAME: ghcr.io/mpcoredeveloper/sharpcoredb-server
jobs:
build-and-push:
name: Build & push SharpCoreDB server image
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: Checkout
uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7
- name: Compute image tags
id: meta
shell: pwsh
run: |
$version = if ("${{ github.ref_type }}" -eq 'tag') { "${{ github.ref_name }}".TrimStart('v') } else { "${{ github.sha }}".Substring(0, 7) }
$tags = @("${{ env.IMAGE_NAME }}:$version")
if ("${{ github.ref_type }}" -eq 'tag') {
$tags += "${{ env.IMAGE_NAME }}:latest"
}
Write-Host "Version: $version"
Write-Host "Tags: $($tags -join ', ')"
"version=$version" >> $env:GITHUB_OUTPUT
"tags=$($tags -join ',')" >> $env:GITHUB_OUTPUT
- name: Set up QEMU
uses: docker/setup-qemu-action@1f40c72289eff860ee54a304f1438e3cff362e0a # v4.3.0
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@37fe631027851001ddb9b187196cc803df7f5f0e # v4.3.0
- name: Log in to GHCR
uses: docker/login-action@dbcb813823bdd20940b903addbd779551569679f # v4.6.0
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@53b7df96c91f9c12dcc8a07bcb9ccacbed38856a # v7.3.0
with:
context: .
file: src/SharpCoreDB.Server/Dockerfile
push: true
platforms: linux/amd64, linux/arm64
tags: ${{ steps.meta.outputs.tags }}
build-args: |
VERSION=${{ steps.meta.outputs.version }}
labels: |
org.opencontainers.image.title=SharpCoreDB Server
org.opencontainers.image.description=SharpCoreDB network database server (gRPC + HTTPS)
org.opencontainers.image.source=${{ github.server_url }}/${{ github.repository }}
org.opencontainers.image.version=${{ steps.meta.outputs.version }}
org.opencontainers.image.revision=${{ github.sha }}