@@ -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 }}"
0 commit comments