Update MediaMTX version from v0.23.7 to v0.23.8 (#925) #1808
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: Docker | |
on: | |
schedule: | |
- cron: '31 22 * * 0' | |
push: | |
branches: [main, dev] | |
# Publish semver tags as releases. | |
tags: ['v*.*.*'] | |
pull_request: | |
branches: [main] | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
permissions: | |
contents: write | |
packages: write | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v3 | |
- name: Set up QEMU | |
uses: docker/setup-qemu-action@v2 | |
with: | |
platforms: linux/amd64,linux/arm64,linux/arm | |
- name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@master | |
- name: Login to DockerHub | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v2 | |
with: | |
username: ${{ secrets.DOCKERHUB_USERNAME }} | |
password: ${{ secrets.DOCKERHUB_TOKEN }} | |
# Login against a Docker registry except on PR | |
# https://github.com/docker/login-action | |
- name: Log into registry ghcr.io | |
if: github.event_name != 'pull_request' | |
uses: docker/login-action@v2 | |
with: | |
registry: ghcr.io | |
username: ${{ github.repository_owner }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
# Extract metadata (tags, labels) for Docker | |
# https://github.com/docker/metadata-action | |
- name: Extract Docker metadata | |
id: meta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
${{ github.repository_owner }}/wyze-bridge | |
ghcr.io/${{ github.repository }} | |
tags: | | |
type=schedule | |
type=semver,pattern={{ version }} | |
type=edge,branch=main,enable=${{ github.event_name == 'push' }} | |
type=ref,event=branch,enable=${{ contains(github.ref,'dev') }} | |
# Extract metadata (tags, labels) for Docker | |
# https://github.com/docker/metadata-action | |
- name: Extract Docker metadata for hwaccel builds | |
id: hwmeta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
${{ github.repository_owner }}/wyze-bridge | |
ghcr.io/${{ github.repository }} | |
flavor: | | |
latest=auto | |
suffix=-hw,onlatest=true | |
tags: | | |
type=schedule,suffix=-hw | |
type=semver,pattern={{ version }},suffix=-hw | |
type=edge,branch=main,enable=${{ github.event_name == 'push' }},suffix=-hw | |
type=ref,event=branch,enable=${{ contains(github.ref,'dev') }},suffix=-hw | |
- name: Extract Docker metadata for qsv builds | |
id: qsvmeta | |
uses: docker/metadata-action@v4 | |
with: | |
images: | | |
${{ github.repository_owner }}/wyze-bridge | |
ghcr.io/${{ github.repository }} | |
flavor: | | |
latest=auto | |
suffix=-qsv,onlatest=true | |
tags: | | |
type=schedule,suffix=-qsv | |
type=semver,pattern={{ version }},suffix=-qsv | |
type=edge,branch=main,enable=${{ github.event_name == 'push' }},suffix=-qsv | |
type=ref,event=branch,enable=${{ contains(github.ref,'dev') }},suffix=-qsv | |
- name: Update Release Version | |
if: steps.meta.outputs.VERSION != '' | |
run: | | |
if [[ ${{ steps.meta.outputs.VERSION }} =~ ^[0-9]+\.[0-9]+\.[0-9]+(-.*)?$ ]]; then | |
sed -i "s/^VERSION=.*/VERSION=${{ steps.meta.outputs.VERSION }}/" ./app/.env | |
jq --arg VERSION "${{ steps.meta.outputs.VERSION }}" '.version = $VERSION' ./app/config.json > updated.json | |
mv updated.json ./app/config.json | |
fi | |
# Build and push Docker image with Buildx (don't push on PR) | |
# https://github.com/docker/build-push-action | |
- name: Build and push a multi-arch Docker image | |
uses: docker/build-push-action@v4 | |
with: | |
builder: ${{ steps.buildx.outputs.name }} | |
context: ./app/ | |
push: ${{ github.event_name != 'pull_request' }} | |
file: ./app/Dockerfile.multiarch | |
platforms: linux/amd64,linux/arm64,linux/arm | |
build-args: BUILD=${{ steps.meta.outputs.VERSION }} | |
labels: | | |
${{ steps.meta.outputs.labels }} | |
io.hass.name=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.title'] }} | |
io.hass.description=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.description'] }} | |
io.hass.version=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }} | |
io.hass.type=addon | |
io.hass.arch=amd64,armhf,aarch64 | |
tags: ${{ steps.meta.outputs.tags }} | |
# Build and push Docker image with Buildx (don't push on PR) | |
# https://github.com/docker/build-push-action | |
- name: Build and push an amd64 Docker image with hwaccel enabled | |
uses: docker/build-push-action@v4 | |
with: | |
builder: ${{ steps.buildx.outputs.name }} | |
context: ./app/ | |
push: ${{ github.event_name != 'pull_request' }} | |
file: ./app/Dockerfile.hwaccel | |
platforms: linux/amd64 | |
build-args: BUILD=${{ steps.meta.outputs.VERSION }} | |
labels: | | |
${{ steps.meta.outputs.labels }} | |
io.hass.name=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.title'] }} | |
io.hass.description=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.description'] }} | |
io.hass.version=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }} | |
io.hass.type=addon | |
io.hass.arch=amd64 | |
tags: ${{ steps.hwmeta.outputs.tags }} | |
- name: Build and push an amd64 Docker image with QSV drivers | |
uses: docker/build-push-action@v4 | |
with: | |
builder: ${{ steps.buildx.outputs.name }} | |
context: ./app/ | |
push: ${{ github.event_name != 'pull_request' }} | |
file: ./app/Dockerfile.hwaccel | |
build-args: | | |
BUILD=${{ steps.meta.outputs.VERSION }} | |
QSV=1 | |
labels: | | |
${{ steps.meta.outputs.labels }} | |
io.hass.name=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.title'] }} | |
io.hass.description=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.description'] }} | |
io.hass.version=${{ fromJSON(steps.meta.outputs.json).labels['org.opencontainers.image.version'] }} | |
io.hass.type=addon | |
io.hass.arch=amd64 | |
tags: ${{ steps.qsvmeta.outputs.tags }} | |
- name: Commit and push changes | |
uses: stefanzweifel/git-auto-commit-action@v4 | |
with: | |
branch: main | |
commit_message: 'Bump Version to v${{ steps.meta.outputs.VERSION }}' | |
file_pattern: 'app/.env app/config.json' |