mirror of
https://github.com/parrazam/radicale-docker.git
synced 2024-11-02 06:24:14 +01:00
20 lines
463 B
YAML
20 lines
463 B
YAML
name: Publish Docker Hub
|
|
|
|
on:
|
|
push:
|
|
tags: [ '*.*.*.*' ]
|
|
pull_request:
|
|
branches: [ master ]
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
- 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 }}
|
|
tag_names: true
|