-
Notifications
You must be signed in to change notification settings - Fork 4
49 lines (42 loc) · 1.32 KB
/
publish-ghcr.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
name: Publish to GHCR
on:
workflow_dispatch:
push:
branches:
- main
jobs:
build-and-publish-docker-image:
runs-on: ubuntu-22.04
permissions:
contents: read
packages: write
strategy:
matrix:
service: [frontend, message, year, name]
steps:
- uses: actions/checkout@v1
- name: Log in to the Container registry
uses: docker/[email protected]
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/[email protected]
- name: Extract metadata (tags, labels) for Docker
id: meta
uses: docker/[email protected]
with:
images: |
ghcr.io/${{ github.repository }}/egs-${{ matrix.service }}-go
- name: Build and push
uses: docker/[email protected]
with:
context: "{{ defaultContext }}:go-uninstrumented"
file: ${{ matrix.service }}-service/Dockerfile
tags: ghcr.io/${{ github.repository }}/egs-${{ matrix.service }}-go:dev
push: true
labels: ${{ steps.meta.outputs.labels }}
platforms: linux/amd64,linux/arm64