mirror of
https://github.com/mtan93/homeassistant-addons.git
synced 2026-03-08 05:21:51 +00:00
Bumps [home-assistant/builder](https://github.com/home-assistant/builder) from 2022.09.0 to 2022.11.0. - [Release notes](https://github.com/home-assistant/builder/releases) - [Commits](https://github.com/home-assistant/builder/compare/2022.09.0...2022.11.0) --- updated-dependencies: - dependency-name: home-assistant/builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com>
34 lines
968 B
YAML
34 lines
968 B
YAML
name: toogoodtogo-ha-mqtt-bridge
|
|
|
|
on:
|
|
# Allows you to run this workflow manually from the Actions tab
|
|
workflow_dispatch:
|
|
inputs:
|
|
version:
|
|
description: "Image Tag"
|
|
required: true
|
|
|
|
jobs:
|
|
toogoodtogo-ha-mqtt-bridge:
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v3
|
|
# - name: Set up QEMU
|
|
# uses: docker/setup-qemu-action@v2
|
|
# - name: Set up Docker Buildx
|
|
# uses: docker/setup-buildx-action@v2
|
|
- name: Login to DockerHub
|
|
uses: docker/login-action@v2
|
|
with:
|
|
username: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
password: ${{ secrets.DOCKERHUB_TOKEN }}
|
|
- name: Build and push
|
|
uses: home-assistant/builder@2022.11.0
|
|
with:
|
|
args: |
|
|
--all \
|
|
--target toogoodtogo-ha-mqtt-bridge \
|
|
--docker-hub maxwinterstein --version ${{ github.event.inputs.version }}
|