Add action to push docker images

This commit is contained in:
Maschell 2020-08-10 12:12:28 +02:00
parent 2c940a48d0
commit 0b8403b434
1 changed files with 22 additions and 0 deletions

22
.github/workflows/release.yml vendored Normal file
View File

@ -0,0 +1,22 @@
name: Publish Docker
on:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- name: Get release version
id: get_release_tag
run: echo ::set-env name=RELEASE_VERSION::$(echo $(date '+%Y%m%d'))
- name: Publish to Registry
uses: elgohr/Publish-Docker-Github-Action@master
with:
name: wiiuenv/wiiumodulesystem
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
snapshot: true
cache: true
tags: "latest, ${{ env.RELEASE_VERSION }}"