Skip to content

Commit cdf47c9

Browse files
committed
ci/cd - fix push docker images steps
1 parent 3ebc9a2 commit cdf47c9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

.github/workflows/beta.yml

+5-1
Original file line numberDiff line numberDiff line change
@@ -141,6 +141,9 @@ jobs:
141141

142142
# Push Docker images
143143
push-images:
144+
permissions:
145+
contents: read
146+
packages: write
144147
needs: [create-arm, wait-builds]
145148
strategy:
146149
matrix:
@@ -162,7 +165,8 @@ jobs:
162165
dockerfile: src/ui/Dockerfile
163166
uses: ./.github/workflows/push-docker.yml
164167
with:
165-
IMAGE: bunkerity/${{ matrix.image }}:${{ matrix.release }},bunkerity/${{ matrix.image }}:${{ needs.wait-builds.outputs.version }}
168+
IMAGE: ${{ matrix.image }}
169+
TAGS: bunkerity/${{ matrix.image }}:${{ matrix.release }},bunkerity/${{ matrix.image }}:${{ needs.wait-builds.outputs.version }},ghcr.io/bunkerity/${{ matrix.image }}:${{ matrix.release }},ghcr.io/bunkerity/${{ matrix.image }}:${{ needs.wait-builds.outputs.version }}
166170
CACHE_FROM: ${{ matrix.cache_from }}-${{ matrix.release }}
167171
DOCKERFILE: ${{ matrix.dockerfile }}
168172
secrets:

0 commit comments

Comments
 (0)