Added automated build and push to Docker Hub

This commit is contained in:
Merijntje Tak
2022-07-10 16:39:40 +02:00
parent 5909c88c08
commit 8116885f78

26
.github/workflows/main.yml vendored Normal file
View File

@@ -0,0 +1,26 @@
name: docker-build-and-push
on:
push:
branches:
- 'main'
jobs:
docker:
runs-on: ubuntu-latest
steps:
- 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
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
uses: docker/build-push-action@v3
with:
push: true
tags: merijntjetak/docker-nsupdate-ddns:latest