We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ddb7105 commit 0100b13Copy full SHA for 0100b13
.github/workflows/release.yml
@@ -197,7 +197,11 @@ jobs:
197
run: |
198
nix build .#image-${{ matrix.arch }}
199
docker load < ./result
200
- docker tag grhooks:${{ env.VERSION }} ghcr.io/${{ env.REPOSITORY }}:${{ matrix.arch }}
+ 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 }}
205
206
docker-publish:
207
runs-on: ubuntu-latest
@@ -228,4 +232,4 @@ jobs:
228
232
229
233
echo "Running docker manifest create $IMAGE $manifest_args"
230
234
eval docker manifest create $IMAGE $manifest_args
231
- docker push $IMAGE
235
+ docker manifest push $IMAGE
0 commit comments