-
Notifications
You must be signed in to change notification settings - Fork 0
38 lines (35 loc) · 1.24 KB
/
docker-publish.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
name: Docker
on:
push:
tags:
- '*'
jobs:
build-push:
runs-on: ubuntu-latest
steps:
- id: build_info
name: build info
run:
echo ::set-output name=tags::ghcr.io/${{ github.repository }}:${GITHUB_REF#refs/tags/},ghcr.io/${{ github.repository }}:latest
- name: setup qemu
uses: docker/setup-qemu-action@v1
- name: setup buildx
uses: docker/setup-buildx-action@v1
- name: login to ghcr.io
uses: docker/login-action@v1
with:
registry: ghcr.io
username: kronostechnologies-build
password: ${{ secrets.GHCR_TOKEN }}
- name: build and push
uses: docker/build-push-action@v2
with:
tags: ${{ steps.build_info.outputs.tags }}
platforms: linux/amd64,linux/arm64
push: true
labels: |
org.opencontainers.image.title=${{ github.event.repository.name }}
org.opencontainers.image.description=${{ github.event.repository.description }}
org.opencontainers.image.source=${{ github.event.repository.html_url }}
org.opencontainers.image.url=${{ github.event.repository.html_url }}
org.opencontainers.image.revision=${{ github.sha }}