From 407499ad12ac0668be77f02da4d72d2ad1cbfe81 Mon Sep 17 00:00:00 2001 From: ShaYmez Date: Wed, 28 Dec 2022 02:12:08 +0000 Subject: [PATCH] Add workflow for docker-build --- .github/workflows/image.yml | 24 ++++++++++++++++++++++++ 1 file changed, 24 insertions(+) create mode 100644 .github/workflows/image.yml diff --git a/.github/workflows/image.yml b/.github/workflows/image.yml new file mode 100644 index 0000000..cb0282b --- /dev/null +++ b/.github/workflows/image.yml @@ -0,0 +1,24 @@ +name: Build-HBlink3 + +on: + push: + branches: master + +jobs: + build: + runs-on: ubuntu-latest + steps: + - name: checkout code + uses: actions/checkout@v2 + - name: install buildx + id: buildx + uses: crazy-max/ghaction-docker-buildx@v1 + with: + version: latest + - name: login to docker hub + run: echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin + - name: build the image + run: | + docker buildx build --push \ + --tag shaymez/hblink3:latest \ + --platform linux/i386,linux/amd64,linux/arm64,linux/arm/v7 . \ No newline at end of file