acme.sh/.github/workflows/dockerhub.yml

47 lines
1.3 KiB
YAML
Raw Normal View History

2020-05-01 15:44:56 +00:00
name: Build DockerHub
on:
push:
2020-08-21 08:54:24 +00:00
branches:
2020-08-21 09:55:07 +00:00
- '*'
2020-08-21 08:54:24 +00:00
tags:
- '*'
2020-05-01 15:44:56 +00:00
jobs:
build:
runs-on: ubuntu-latest
steps:
2020-07-23 12:53:53 +00:00
- name: checkout code
uses: actions/checkout@v2
- name: install buildx
id: buildx
2020-08-21 08:54:24 +00:00
uses: crazy-max/ghaction-docker-buildx@v3
2020-07-23 12:53:53 +00:00
with:
2020-08-21 08:54:24 +00:00
buildx-version: latest
qemu-version: latest
2020-07-23 12:53:53 +00:00
- name: login to docker hub
run: |
echo "${{ secrets.DOCKER_PASSWORD }}" | docker login -u "${{ secrets.DOCKER_USERNAME }}" --password-stdin
2020-08-21 08:54:24 +00:00
- name: build and push the image
run: |
2020-08-21 09:40:13 +00:00
DOCKER_IMAGE=neilpang/acme.sh
2020-08-21 09:34:43 +00:00
if [[ $GITHUB_REF == refs/tags/* ]]; then
2020-08-21 09:55:07 +00:00
DOCKER_IMAGE_TAG=${GITHUB_REF#refs/tags/}
2020-08-21 09:34:43 +00:00
fi
if [[ $GITHUB_REF == refs/heads/* ]]; then
2020-08-21 09:55:07 +00:00
DOCKER_IMAGE_TAG=${GITHUB_REF#refs/heads/}
2020-08-21 09:34:43 +00:00
2020-08-21 09:55:07 +00:00
if [[ $DOCKER_IMAGE_TAG == master ]]; then
DOCKER_IMAGE_TAG=latest
2020-08-21 09:34:43 +00:00
AUTO_UPGRADE=1
fi
fi
2020-08-21 08:54:24 +00:00
docker buildx build \
2020-08-21 09:55:07 +00:00
--tag ${DOCKER_IMAGE}:${DOCKER_IMAGE_TAG} \
2020-08-21 08:54:24 +00:00
--output "type=image,push=true" \
--build-arg AUTO_UPGRADE=${AUTO_UPGRADE} \
--platform linux/arm64/v8,linux/amd64,linux/arm/v6,linux/arm/v7,linux/386 .