mirror of
https://github.com/parrazam/radicale-docker.git
synced 2024-11-21 16:53:24 +01:00
Add DockerHub deploy action
This commit is contained in:
parent
b687baf8c4
commit
2b62aa3174
1 changed files with 17 additions and 0 deletions
17
.github/workflows/deploy-docker
vendored
Normal file
17
.github/workflows/deploy-docker
vendored
Normal file
|
@ -0,0 +1,17 @@
|
|||
name: Publish Docker Hub
|
||||
|
||||
on:
|
||||
push:
|
||||
tags: [ '*.*.*.*' ]
|
||||
|
||||
jobs:
|
||||
build:
|
||||
runs-on: ubuntu-latest
|
||||
steps:
|
||||
- uses: actions/checkout@v4
|
||||
- name: Publish to Docker Hub Registry
|
||||
uses: elgohr/Publish-Docker-Github-Action@v4
|
||||
with:
|
||||
name: parrazam/radicale-docker
|
||||
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
||||
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
Loading…
Reference in a new issue