Skip to content

Commit 26deda8

Browse files
committed
add both arch in docker image
1 parent 65138e1 commit 26deda8

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

.github/workflows/release.yml

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -82,16 +82,16 @@ jobs:
8282
8383
# Delete temp architecture-specific tags
8484
curl -X DELETE -H "Accept: application/json" -H "Authorization: JWT ${{ secrets.DOCKER_TOKEN }}" \
85-
"${{ secrets.DOCKER_REGISTRY }}/${{ secrets.DOCKER_IMAGE }}/tags/${VERSION}-amd64/" || true
85+
"https://hub.docker.com/v2/repositories/${{ secrets.DOCKER_IMAGE }}/tags/${VERSION}-amd64/" || true
8686
8787
curl -X DELETE -H "Accept: application/json" -H "Authorization: JWT ${{ secrets.DOCKER_TOKEN }}" \
88-
"${{ secrets.DOCKER_REGISTRY }}/${{ secrets.DOCKER_IMAGE }}/tags/${VERSION}-arm64/" || true
88+
"https://hub.docker.com/v2/repositories/${{ secrets.DOCKER_IMAGE }}/tags/${VERSION}-arm64/" || true
8989
9090
curl -X DELETE -H "Accept: application/json" -H "Authorization: JWT ${{ secrets.DOCKER_TOKEN }}" \
91-
"${{ secrets.DOCKER_REGISTRY }}/${{ secrets.DOCKER_IMAGE }}/tags/latest-amd64/" || true
91+
"https://hub.docker.com/v2/repositories/${{ secrets.DOCKER_IMAGE }}/tags/latest-amd64/" || true
9292
9393
curl -X DELETE -H "Accept: application/json" -H "Authorization: JWT ${{ secrets.DOCKER_TOKEN }}" \
94-
"${{ secrets.DOCKER_REGISTRY }}/${{ secrets.DOCKER_IMAGE }}/tags/latest-arm64/" || true
94+
"https://hub.docker.com/v2/repositories/${{ secrets.DOCKER_IMAGE }}/tags/latest-arm64/" || true
9595
9696
deploy:
9797
runs-on: ubuntu-latest

0 commit comments

Comments
 (0)