-
Notifications
You must be signed in to change notification settings - Fork 0
46 lines (39 loc) · 1.28 KB
/
docker.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
name: Docker Publish
# Prevent two instances of this workflow running at the same time
concurrency: docker-publish
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: meyfa
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: ./
file: ./client/Dockerfile
platforms: linux/amd64,linux/arm64
push: true
tags: meyfa/ddns-client:latest
cache-from: type=gha
cache-to: type=gha,mode=max
# See: https://docs.docker.com/build/ci/github-actions/update-dockerhub-desc/
- name: Update DockerHub description
uses: peter-evans/dockerhub-description@e98e4d1628a5f3be2be7c231e50981aee98723ae # v4.0.0
with:
username: meyfa
password: ${{ secrets.DOCKER_HUB_ACCESS_TOKEN }}
repository: meyfa/ddns-client
short-description: ${{ github.event.repository.description }}
enable-url-completion: true