Update merge

This commit is contained in:
2025-07-04 13:55:04 +05:30
parent 5c014fb4f8
commit 2b0992d80f

View File

@@ -17,9 +17,10 @@ jobs:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Create and push manifest images
uses: Noelware/docker-manifest-action@master # or use a pinned version in the Releases tab
with:
inputs: ${{ vars.DOCKERHUB_REPO }}:latest-amd64,${{ vars.DOCKERHUB_REPO }}:latest-arm64
images: ${{ vars.DOCKERHUB_REPO }}:latest
push: true
- name: Create manifest images
run: docker manifest create ${{ vars.DOCKERHUB_REPO }}:latest \
${{ vars.DOCKERHUB_REPO }}:latest-amd64 \
${{ vars.DOCKERHUB_REPO }}:latest-arm64
- name: Push manifest images
run: docker manifest push ${{ vars.DOCKERHUB_REPO }}:latest