copilot-swe-agent[bot] c67c49f57d Fix Debian 13 compatibility: Update Alpine base, fix shell script, update GitHub Actions
Co-authored-by: ShaYmez <76499782+ShaYmez@users.noreply.github.com>
2025-12-13 02:03:52 +00:00

25 lines
648 B
YAML

name: Build-HBlink3
on:
push:
branches: master
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: checkout code
uses: actions/checkout@v4
- name: install buildx
id: buildx
uses: docker/setup-buildx-action@v3
- name: login to docker hub
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKER_USERNAME }}
password: ${{ secrets.DOCKER_PASSWORD }}
- name: build the image
run: |
docker buildx build --push \
--tag shaymez/hblink3:latest \
--platform linux/i386,linux/amd64,linux/arm64,linux/arm/v7 .