Skip to content

2024.6.0

2024.6.0 #32

Workflow file for this run

name: "Publish"
on:
workflow_dispatch:
push:
branches: ["main"]
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 /data \
--docker-hub matt8707