Created the deploy_docker github workflow

This commit is contained in:
Mathias Wagner 2023-06-01 18:07:31 +02:00
parent 88dd542d13
commit d86352e126
Signed by: Mathias
GPG Key ID: B8DC354B0A1F5B44

33
.github/workflows/deploy_docker.yml vendored Normal file
View File

@ -0,0 +1,33 @@
name: Deploy to DockerHub
on:
push:
branches: [ "main" ]
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Set up QEMU
uses: docker/setup-qemu-action@master
with:
platforms: all
- name: Set up Docker Build
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
platforms: linux/amd64
tags: germannewsmaker/powertools:main