Skip to content

Commit 0100b13

Browse files
committed
ci: push image to registry
1 parent ddb7105 commit 0100b13

File tree

1 file changed

+6
-2
lines changed

1 file changed

+6
-2
lines changed

.github/workflows/release.yml

Lines changed: 6 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,11 @@ jobs:
197197
run: |
198198
nix build .#image-${{ matrix.arch }}
199199
docker load < ./result
200-
docker tag grhooks:${{ env.VERSION }} ghcr.io/${{ env.REPOSITORY }}:${{ matrix.arch }}
200+
docker tag grhooks:${{ env.VERSION }} ghcr.io/${{ env.REPOSITORY }}:${{ env.VERSION }}-${{ matrix.arch }}
201+
202+
- name: Push image
203+
run: |
204+
docker push ghcr.io/${{ env.REPOSITORY }}:${{ env.VERSION }}-${{ matrix.arch }}
201205
202206
docker-publish:
203207
runs-on: ubuntu-latest
@@ -228,4 +232,4 @@ jobs:
228232
229233
echo "Running docker manifest create $IMAGE $manifest_args"
230234
eval docker manifest create $IMAGE $manifest_args
231-
docker push $IMAGE
235+
docker manifest push $IMAGE

0 commit comments

Comments
 (0)