Skip to content
This repository has been archived by the owner on May 8, 2023. It is now read-only.

Publish

Publish #14

Workflow file for this run

name: 'Publish'
on:
workflow_dispatch:
jobs:
publish:
name: Publish
runs-on: ubuntu-latest
strategy:
matrix:
arch: ["aarch64", "amd64", "armhf", "armv7", "i386"]
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Login to ghcr.io
uses: docker/login-action@v2.1.0
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Publish
uses: home-assistant/builder@2023.03.0
with:
args: |
--${{ matrix.arch }} \
--target mariadb \
--docker-hub ghcr.io/${{ github.actor }}
env:
CAS_API_KEY: ${{ secrets.CAS_TOKEN }}