Skip to content

Added instructions on how to access the docker container #49

Added instructions on how to access the docker container

Added instructions on how to access the docker container #49

Workflow file for this run

name: Build and Test Add-on
on:
pull_request:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
addon: ["ebusd"]
arch: ["aarch64", "amd64", "armhf", "armv7", "i386"]
steps:
- name: ⤵️ Check out code from GitHub
uses: actions/checkout@v4.1.1
- name: Get information
id: info
uses: home-assistant/actions/helpers/info@master
with:
path: ./${{ matrix.addon }}
- name: Build ${{ matrix.arch }} add-on
if: contains(steps.info.outputs.architectures, matrix.arch)
uses: home-assistant/builder@2023.12.0
with:
args: |
--${{ matrix.arch }} \
--target ${{matrix.addon}} \
--image "ha-addon-ebusd-${{ matrix.arch }}" \
--docker-hub "ghcr.io/${{ github.repository_owner }}" \
--test