-
Notifications
You must be signed in to change notification settings - Fork 97
52 lines (44 loc) · 1.54 KB
/
customer-docker.yml
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
name: Customer Docker images
on:
push:
branches:
- 'customer-*'
pull_request:
branches:
- 'customer-*'
jobs:
docker-build:
strategy:
matrix:
runner: [ubuntu-latest]
runs-on: ${{ matrix.runner }}
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- name: generate or hydrate protos
uses: ./.github/actions/genprotos
- uses: depot/setup-action@b0b1ea4f69e92ebf5dea3f8713a1b0c37b2126a5 # v1
- name: Login to GitHub Container Registry
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3
with:
registry: ghcr.io
username: ${{github.actor}}
password: ${{secrets.GITHUB_TOKEN}}
- name: Set Short Commit Hash
id: vars
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT
- name: extract branch name suffix for customer
id: branch
run: |
echo "branch=$(echo $GITHUB_REF | sed -e 's/.*customer-//')" >> $GITHUB_OUTPUT
- name: Build (optionally publish) PeerDB Images
uses: depot/bake-action@143e50b965398f1f5dc8463be7dde6f62b9e9c21 # v1
with:
token: ${{ secrets.DEPOT_TOKEN }}
files: ./docker-bake.hcl
push: ${{ startsWith(github.ref, 'refs/heads/customer-') }}
env:
SHA_SHORT: ${{ steps.branch.outputs.branch }}-${{ steps.vars.outputs.sha_short }}
TAG: latest-${{ steps.branch.outputs.branch }}