Skip to content

Does this still build?! #10

Does this still build?!

Does this still build?! #10

Workflow file for this run

name: Imge
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
jobs:
init:
name: Initialize build
runs-on: ubuntu-latest
outputs:
architectures: ${{ steps.info.outputs.architectures }}
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Get information
id: info
uses: home-assistant/actions/helpers/info@master
build:
name: Publish builder
needs: init
runs-on: ubuntu-latest
strategy:
fail-fast: False
matrix:
architecture: ${{ fromJson(needs.init.outputs.architectures) }}
steps:
- name: Checkout the repository
uses: actions/checkout@v4
- name: Login to DockerHub
uses: docker/login-action@v2
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Publish
uses: home-assistant/builder@master
with:
args: |
--${{ matrix.architecture }} \
--target dnscrypt-proxy \
--docker-hub linickx/addon-dnscrypt-proxy-${{ matrix.architecture }}