Skip to content
This repository was archived by the owner on Jul 1, 2024. It is now read-only.

Commit 7b8f08d

Browse files
committed
fix addon configuration
1 parent c2f46d5 commit 7b8f08d

3 files changed

Lines changed: 12 additions & 12 deletions

File tree

.github/workflows/hass.yaml

Lines changed: 11 additions & 11 deletions
Original file line numberDiff line numberDiff line change
@@ -109,14 +109,14 @@ jobs:
109109
load: true
110110
# yamllint disable rule:line-length
111111
tags: |
112-
ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.environment }}
113-
ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.version }}
112+
ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.environment }}
113+
ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.version }}
114114
# yamllint enable rule:line-length
115115
context: "."
116-
file: ${{ needs.information.outputs.target }}/Dockerfile
116+
file: ${{ needs.information.outputs.target }}/Dockerfile.addon
117117
cache-from: |
118118
type=local,src=/tmp/.docker-cache
119-
ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:edge
119+
ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:edge
120120
cache-to: type=local,mode=max,dest=/tmp/.docker-cache
121121
platforms: ${{ steps.flags.outputs.platform }}
122122
build-args: |
@@ -130,9 +130,9 @@ jobs:
130130
# yamllint disable rule:line-length
131131
run: |
132132
docker push \
133-
"ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.environment }}"
133+
"ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.environment }}"
134134
docker push \
135-
"ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.version }}"
135+
"ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}/${{ matrix.architecture }}:${{ needs.information.outputs.version }}"
136136
137137
manifest:
138138
name: 👷 Build & Deploy Multi Arch Manifest
@@ -155,15 +155,15 @@ jobs:
155155
echo '${{ needs.information.outputs.architectures }}' \
156156
| jq --raw-output '.[]'
157157
); do
158-
images+=("ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}/${architecture}:${{ needs.information.outputs.version }}")
158+
images+=("ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}/${architecture}:${{ needs.information.outputs.version }}")
159159
done
160160
161161
docker manifest create \
162-
"ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}:${{ needs.information.outputs.environment }}" \
162+
"ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}:${{ needs.information.outputs.environment }}" \
163163
"${images[@]}"
164164
165165
docker manifest create \
166-
"ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}:${{ needs.information.outputs.version }}" \
166+
"ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}:${{ needs.information.outputs.version }}" \
167167
"${images[@]}"
168168
169169
- name: 🏗 Login to GitHub Container Registry
@@ -177,6 +177,6 @@ jobs:
177177
# yamllint disable rule:line-length
178178
run: |
179179
docker manifest push \
180-
"ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}:${{ needs.information.outputs.environment }}"
180+
"ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}:${{ needs.information.outputs.environment }}"
181181
docker manifest push \
182-
"ghcr.io/${{ github.repository_owner }}/${{ needs.information.outputs.slug }}:${{ needs.information.outputs.version }}"
182+
"ghcr.io/${{ github.repository }}/${{ needs.information.outputs.slug }}:${{ needs.information.outputs.version }}"

server/config.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: "Ava Server"
22
description: "Self-hosted personal assistant in minutes with built-in Home Assistant integration and great extensibility and customizability."
33
version: "0.0.0"
4-
slug: "ada/server"
4+
slug: "server"
55
init: false
66
arch:
77
- aarch64

0 commit comments

Comments
 (0)