Bumps [home-assistant/builder](https://github.com/home-assistant/builder) from 2023.08.0 to 2023.12.0. - [Release notes](https://github.com/home-assistant/builder/releases) - [Commits](https://github.com/home-assistant/builder/compare/2023.08.0...2023.12.0) --- updated-dependencies: - dependency-name: home-assistant/builder dependency-type: direct:production ... Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
55 lines
1.7 KiB
YAML
55 lines
1.7 KiB
YAML
name: 3DPrinter-Octoprint manual build
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
|
|
jobs:
|
|
build:
|
|
runs-on: ubuntu-latest
|
|
name: Build ${{ matrix.arch }} ${{ matrix.addon }} add-on
|
|
strategy:
|
|
matrix:
|
|
addon: ["3dprinter-octoprint"]
|
|
arch: ["aarch64", "amd64", "armhf", "armv7"]
|
|
steps:
|
|
- name: Check out the repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Get information
|
|
id: info
|
|
uses: home-assistant/actions/helpers/info@master
|
|
with:
|
|
path: "./${{ matrix.addon }}"
|
|
|
|
- name: Check if add-on should be built
|
|
id: check
|
|
run: |
|
|
if [[ "${{ steps.info.outputs.architectures }}" =~ ${{ matrix.arch }} ]]; then
|
|
echo "::set-output name=build_arch::true";
|
|
echo "::set-output name=image::$(echo ${{ steps.info.outputs.image }} | cut -d'/' -f3)";
|
|
else
|
|
echo "${{ matrix.arch }} is not a valid arch for ${{ matrix.addon }}, skipping build";
|
|
echo "::set-output name=build_arch::false";
|
|
fi
|
|
|
|
- name: Login to GitHub Container Registry
|
|
if: env.BUILD_ARGS != '--test'
|
|
uses: docker/login-action@v3.0.0
|
|
with:
|
|
registry: ghcr.io
|
|
username: ${{ github.repository_owner }}
|
|
password: ${{ secrets.GITHUB_TOKEN }}
|
|
|
|
- name: Build ${{ matrix.addon }} add-on
|
|
if: steps.check.outputs.build_arch == 'true'
|
|
uses: home-assistant/builder@2023.12.0
|
|
with:
|
|
args: |
|
|
${{ env.BUILD_ARGS }} \
|
|
--${{ matrix.arch }} \
|
|
--target /data/${{ matrix.addon }} \
|
|
--image "${{ steps.check.outputs.image }}" \
|
|
--docker-hub "ghcr.io/${{ github.repository_owner }}" \
|
|
--addon \
|
|
--docker-hub-check
|