Merge test

This commit is contained in:
2025-07-04 13:50:16 +05:30
parent 872e5ae663
commit 15eea6ca18
2 changed files with 25 additions and 4 deletions

View File

@@ -2,10 +2,6 @@ name: Docker Build
on: on:
workflow_dispatch: workflow_dispatch:
push:
branches: [ "main" ]
paths-ignore:
- '**/README.md'
jobs: jobs:
build: build:

View File

@@ -0,0 +1,25 @@
name: Docker Merge
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths-ignore:
- '**/README.md'
jobs:
merge-docker-manifest:
runs-on: ubuntu-latest
steps:
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
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
images: ${{ vars.DOCKERHUB_REPO }}:latest-amd64,${{ vars.DOCKERHUB_REPO }}:latest-arm64
push: true