24 lines
531 B
YAML
24 lines
531 B
YAML
name: build docker image and push to docker hub
|
|
|
|
on:
|
|
push:
|
|
tags:
|
|
- '*'
|
|
|
|
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: build the image
|
|
run: |
|
|
docker buildx build --push \
|
|
--tag shizunge/endlessh-go:latest \
|
|
--platform linux/amd64,linux/arm/v7,linux/arm64 .
|