Skip to content

Commit

Permalink
Add beta workflow and update target path in main.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
gijsvdhoven committed Nov 28, 2024
1 parent 61319dc commit fe635d2
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 1 deletion.
26 changes: 26 additions & 0 deletions .github/workflows/beta.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: "Publish"

on:
workflow_dispatch:
release:
types: [published, workflow_dispatch]

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 \
--docker-hub gijsvdhoven
2 changes: 1 addition & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,5 +22,5 @@ jobs:
with:
args: |
--all \
--target /data/homeassistant-samsung-frame-art \
--target /data/homeassistant-samsung-frame-art-beta \
--docker-hub gijsvdhoven

0 comments on commit fe635d2

Please sign in to comment.