wrapperr/.github/workflows/docker-image.yml
2022-12-07 16:17:50 +01:00

19 lines
415 B
YAML

name: Docker Image for Releases
on:
release:
types: [published]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: docker/build-push-action@v1
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
registry: docker.io
repository: aunefyren/wrapperr
tags: latest, ${{ github.ref }}