This commit is contained in:
cupcakearmy 2021-05-02 14:08:14 +02:00
parent c869238171
commit 04775798f9
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 28 additions and 0 deletions

28
.github/wordflows/docker.yml vendored Normal file
View File

@ -0,0 +1,28 @@
name: ci
on:
push:
branches:
- "master"
jobs:
docker:
runs-on: ubuntu-latest
steps:
- name: Set up QEMU
uses: docker/setup-qemu-action@v1
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v1
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Build and push
id: docker_build
uses: docker/build-push-action@v2
with:
push: true
tags: cupcakearmy/cryptgeon:latest
- name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}