mirror of
https://github.com/ShaYmez/hblink3.git
synced 2024-11-21 07:31:48 -05:00
Add workflow for docker-build
This commit is contained in:
parent
ca222e1279
commit
407499ad12
24
.github/workflows/image.yml
vendored
Normal file
24
.github/workflows/image.yml
vendored
Normal file
@ -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 .
|
Loading…
Reference in New Issue
Block a user