Skip to content

Commit

Permalink
Change mjpg-streamer to ghcr (#254)
Browse files Browse the repository at this point in the history
  • Loading branch information
fredrikbaberg authored Nov 15, 2021
1 parent 6e5b71e commit 00bdf62
Show file tree
Hide file tree
Showing 2 changed files with 55 additions and 1 deletion.
54 changes: 54 additions & 0 deletions .github/workflows/mjpg-streamer-build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,54 @@
name: mjpg-streamer manual build

on:
workflow_dispatch:

jobs:
build:
runs-on: ubuntu-latest
name: Build ${{ matrix.arch }} ${{ matrix.addon }} add-on
strategy:
matrix:
addon: ["mjpg-streamer"]
arch: ["aarch64", "amd64", "armhf", "armv7", "i386"]
steps:
- name: Check out the repository
uses: actions/checkout@v2.4.0

- 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@v1.10.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@2021.09.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
2 changes: 1 addition & 1 deletion mjpg-streamer/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -24,5 +24,5 @@
"ingress": true,
"panel_icon": "mdi:camera",
"panel_title": "mjpg-streamer",
"image": "fredrikbaberg/addon-mjpg-streamer-{arch}"
"image": "ghcr.io/fredrikbaberg/addon-mjpg-streamer-{arch}"
}

0 comments on commit 00bdf62

Please sign in to comment.