first commit

This commit is contained in:
2021-05-15 09:07:36 +02:00
parent 8a4cf5dcba
commit 5b27dfe8d9
3 changed files with 53 additions and 1 deletions

29
.github/workflows/docker-publish.yml vendored Normal file
View File

@ -0,0 +1,29 @@
name: Publish Docker Image
on:
push:
branches:
- main
schedule:
- cron: '0 7 * * SUN'
jobs:
docker:
runs-on: ubuntu-latest
steps:
-
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: rogersik/admin-helper:latest
-
name: Image digest
run: echo ${{ steps.docker_build.outputs.digest }}