-
Notifications
You must be signed in to change notification settings - Fork 1
54 lines (53 loc) · 1.7 KB
/
release.yaml
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
---
name: Release docker image and helm chart
on:
push:
tags:
- 'v[0-9]+.[0-9]+.[0-9]+'
jobs:
release-docker:
runs-on: ubuntu-20.04
if: github.repository_owner == 'metacontroller'
name: Release docker image
steps:
- name: Checkout
uses: actions/checkout@v3
- uses: rlespinasse/github-slug-action@v4
- 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
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: Login to github registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v2
with:
registry: ghcr.io
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker - metainformations
id: docker_meta
uses: docker/metadata-action@v4
with:
images: metacontrollerio/example-nodejs-server,ghcr.io/metacontroller/example-nodejs-server # list of Docker images to use as base name for tags
flavor: |
latest=true
prefix=
suffix=
- name: Docker images - build and push
id: docker_build
uses: docker/build-push-action@v3
with:
context: .
file: Dockerfile
platforms: linux/amd64,linux/arm64,linux/arm
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.docker_meta.outputs.tags }}
labels: ${{ steps.docker_meta.outputs.labels }}
build-args: |
TAG=${{ env.GITHUB_REF_SLUG }}