Publish Tolgee #2
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 Tolgee" | |
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/tolgee \ | |
--docker-hub gijsvdhoven |