Bump version to 1.6.0 #7
Workflow file for this run
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
--- | |
# yamllint disable rule:truthy | |
name: 'Build addon production' | |
on: | |
push: | |
tags: | |
- '*' | |
env: | |
REGISTRY: ghcr.io | |
IMAGE_NAME: mrsuicideparrot/hassio-speedtest-addon | |
jobs: | |
build: | |
name: 'Build release' | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout the repository | |
uses: actions/checkout@v3 | |
- | |
name: Login to DockerHub | |
uses: docker/login-action@v1 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- | |
name: Publish | |
uses: home-assistant/builder@master | |
with: | |
args: | | |
--armhf --armv7 --amd64 --aarch64 \ | |
--target speedtest \ | |
--docker-hub ghcr.io \ | |
-i ${{ env.IMAGE_NAME }}-{arch} |