Skip to content

Commit

Permalink
Add github action to publish to docker hub
Browse files Browse the repository at this point in the history
  • Loading branch information
jhampson-dbre committed Jan 24, 2021
1 parent fee5853 commit 94ba0b0
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/publish.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: 'Publish'

on:
release:
types: [published]

jobs:
publish:
name: Publish
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v2
- name: Login to DockerHub
uses: docker/login-action@v1
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Publish
uses: home-assistant/builder@master
with:
args: |
--aarch64 \
--target nginx_proxy/
--docker-hub jhampdbre

0 comments on commit 94ba0b0

Please sign in to comment.