Skip to content

Commit

Permalink
Added Home Assistant addon build and publish action
Browse files Browse the repository at this point in the history
  • Loading branch information
tpanajott committed Jul 26, 2023
1 parent 733c390 commit 1bf8b53
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/docker-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@v3
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Publish
uses: home-assistant/builder@master
with:
args: |
--all \
--target docker \
--docker-hub ${{ secrets.DOCKERHUB_USERNAME }}

0 comments on commit 1bf8b53

Please sign in to comment.