forked from satishweb/docker-doh
-
Notifications
You must be signed in to change notification settings - Fork 0
50 lines (39 loc) · 1.38 KB
/
docker-build.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
name: Docker Image CI
on:
push:
tags:
- "v*"
env:
IMAGE_NAME: docker-doh
DOCKERHUB_IMAGE: showfom/doh-server
jobs:
build:
runs-on: ubuntu-latest
permissions:
packages: write
contents: read
steps:
- uses: actions/checkout@v2
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
id: buildx
uses: docker/setup-buildx-action@v1
- name: Log in to registry
run: echo "${{ secrets.GITHUB_TOKEN }}" | docker login ghcr.io -u ${{ github.actor }} --password-stdin
- name: Log in to Docker Hub
run: echo "${{ secrets.DOCKERHUB_TOKEN }}" | docker login -u ${{ secrets.DOCKERHUB_USERNAME }} --password-stdin
- name: Set version tag
run: echo "IMAGE_VERSION=${GITHUB_REF##*/v}" >> $GITHUB_ENV
- name: Build images
uses: docker/build-push-action@v2
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
file: ./Dockerfile.alpine
tags: |
"ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:latest"
"ghcr.io/${{ github.repository_owner }}/${{ env.IMAGE_NAME }}:${{ env.IMAGE_VERSION }}"
"${{ env.DOCKERHUB_IMAGE }}:latest"
"${{ env.DOCKERHUB_IMAGE }}:${{ env.IMAGE_VERSION }}"