This commit is contained in:
2025-07-04 12:49:40 +05:30
parent 4e35418b5d
commit 9695d338a9
2 changed files with 27 additions and 4 deletions

View File

@@ -0,0 +1,27 @@
name: Docker Build
on:
workflow_dispatch:
push:
branches: [ "main" ]
paths-ignore:
- '**/README.md'
jobs:
docker-build-and-publish-arm64:
runs-on: ubuntu-arm64
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Login to Docker Hub
uses: docker/login-action@v3
with:
username: ${{ vars.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Docker Build
run: docker build \
--tag ${{ vars.DOCKERHUB_REPO }}:2.10.0 \
--tag ${{ vars.DOCKERHUB_REPO }}:latest \
--push .