Create docker-release-publish.yml
This commit is contained in:
parent
1b45121385
commit
23cb98f631
18
.github/workflows/docker-release-publish.yml
vendored
Normal file
18
.github/workflows/docker-release-publish.yml
vendored
Normal file
@ -0,0 +1,18 @@
|
|||||||
|
name: Deploy Docker Image
|
||||||
|
|
||||||
|
on:
|
||||||
|
push:
|
||||||
|
tags:
|
||||||
|
- '*'
|
||||||
|
|
||||||
|
jobs:
|
||||||
|
build-push:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
steps:
|
||||||
|
- uses: actions/checkout@master
|
||||||
|
- name: Publish to Registry
|
||||||
|
uses: AhnSeongHyun/action-tag-docker-build-push@v1.0.0
|
||||||
|
with:
|
||||||
|
repo_name: vabene1111/recipes
|
||||||
|
username: ${{ secrets.DOCKER_USERNAME }}
|
||||||
|
password: ${{ secrets.DOCKER_PASSWORD }}
|
Loading…
Reference in New Issue
Block a user