-
Notifications
You must be signed in to change notification settings - Fork 8
61 lines (51 loc) · 1.74 KB
/
release.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
53
54
55
56
57
58
59
60
61
---
name: Publish Docker image
on:
release:
types: [published]
jobs:
release:
name: Push Docker image to Docker Hub
runs-on: ubuntu-latest
permissions:
packages: write
steps:
- name: Check out the repo
uses: actions/checkout@v3
- name: Setup mirror
uses: self-actuated/hub-mirror@master
- name: Get TAG
id: get_tag
run: echo TAG=${GITHUB_REF##*/} >> $GITHUB_ENV
- name: Get Repo Owner
id: get_repo_owner
run: echo "REPO_OWNER=$(echo ${{ github.repository_owner }} | tr '[:upper:]' '[:lower:]')" > $GITHUB_ENV
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
- name: "Get docker info"
run: |
echo "Actor: ${{ github.actor }}"
- name: "Log into GitHub Container Registry"
if: "github.event_name != 'pull_request'"
uses: "docker/login-action@v1"
with:
registry: "ghcr.io"
username: "${{ github.actor }}"
password: "${{ secrets.GITHUB_TOKEN }}"
- name: Build and push Docker image
uses: docker/build-push-action@v4
with:
platforms: linux/amd64,linux/arm/v6,linux/arm64
build-args: |
VERSION=${{ env.TAG }}
GitCommit=${{ github.sha }}
context: .
push: true
tags: |
ghcr.io/${{ env.REPO_OWNER }}/vals-operator:${{ github.sha }}
ghcr.io/${{ env.REPO_OWNER }}/vals-operator:${{ env.TAG }}
ghcr.io/${{ env.REPO_OWNER }}/vals-operator:latest
labels: |
LABEL org.opencontainers.image.source="https://github.com/${{ env.REPO_OWNER }}/vals-operator"