Refactor main function in art.py to improve argument parsing for matt… #28
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Publish beta" | |
on: [push, pull_request] | |
jobs: | |
publish: | |
name: Publish | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Login to DockerHub | |
uses: docker/login-action@v3 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
- name: Publish | |
uses: home-assistant/builder@master | |
with: | |
args: | | |
--all \ | |
--target /data/homeassistant-samsung-frame-art-beta \ | |
--docker-hub gijsvdhoven |