deploy multi-architecture Docker images for transfer.sh with buildx #1803
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: deploy multi-architecture Docker images for transfer.sh with buildx | |
on: | |
schedule: | |
- cron: '0 0 * * *' # everyday at midnight UTC | |
pull_request: | |
branches: main | |
push: | |
branches: main | |
tags: | |
- v* | |
jobs: | |
buildx: | |
runs-on: ubuntu-latest | |
steps: | |
- | |
name: Checkout | |
uses: actions/checkout@v2 | |
- | |
name: Prepare | |
id: prepare | |
run: | | |
DOCKER_IMAGE=dutchcoders/transfer.sh | |
DOCKER_PLATFORMS=linux/amd64,linux/arm/v7,linux/arm64,linux/386 | |
VERSION=edge | |
if [[ $GITHUB_REF == refs/tags/* ]]; then | |
VERSION=v${GITHUB_REF#refs/tags/v} | |
fi | |
if [ "${{ github.event_name }}" = "schedule" ]; then | |
VERSION=nightly | |
fi | |
TAGS="--tag ${DOCKER_IMAGE}:${VERSION}" | |
TAGS_NOROOT="--tag ${DOCKER_IMAGE}:${VERSION}-noroot" | |
if [ $VERSION = edge -o $VERSION = nightly ]; then | |
TAGS="$TAGS --tag ${DOCKER_IMAGE}:latest" | |
TAGS_NOROOT="$TAGS_NOROOT --tag ${DOCKER_IMAGE}:latest-noroot" | |
fi | |
echo ::set-output name=docker_image::${DOCKER_IMAGE} | |
echo ::set-output name=version::${VERSION} | |
echo ::set-output name=buildx_args::--platform ${DOCKER_PLATFORMS} \ | |
--build-arg VERSION=${VERSION} \ | |
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \ | |
--build-arg VCS_REF=${GITHUB_SHA::8} \ | |
${TAGS} . | |
echo ::set-output name=buildx_args_noroot::--platform ${DOCKER_PLATFORMS} \ | |
--build-arg VERSION=${VERSION} \ | |
--build-arg BUILD_DATE=$(date -u +'%Y-%m-%dT%H:%M:%SZ') \ | |
--build-arg VCS_REF=${GITHUB_SHA::8} \ | |
--build-arg RUNAS=noroot \ | |
${TAGS_NOROOT} . | |
- | |
name: Set up QEMU | |
uses: docker/setup-qemu-action@v1 | |
with: | |
platforms: all | |
- | |
name: Set up Docker Buildx | |
id: buildx | |
uses: docker/setup-buildx-action@v1 | |
with: | |
version: latest | |
- | |
name: Available platforms | |
run: echo ${{ steps.buildx.outputs.platforms }} | |
- | |
name: Docker Buildx (build) | |
run: | | |
docker buildx build --no-cache --pull --output "type=image,push=false" ${{ steps.prepare.outputs.buildx_args }} | |
docker buildx build --output "type=image,push=false" ${{ steps.prepare.outputs.buildx_args_noroot }} | |
- | |
name: Docker Login | |
if: success() && github.event_name != 'pull_request' | |
env: | |
DOCKER_USERNAME: ${{ secrets.DOCKER_USERNAME }} | |
DOCKER_PASSWORD: ${{ secrets.DOCKER_PASSWORD }} | |
run: | | |
echo "${DOCKER_PASSWORD}" | docker login --username "${DOCKER_USERNAME}" --password-stdin | |
- | |
name: Docker Buildx (push) | |
if: success() && github.event_name != 'pull_request' | |
run: | | |
docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args }} | |
docker buildx build --output "type=image,push=true" ${{ steps.prepare.outputs.buildx_args_noroot }} | |
- | |
name: Docker Check Manifest | |
if: always() && github.event_name != 'pull_request' | |
run: | | |
docker run --rm mplatform/mquery ${{ steps.prepare.outputs.docker_image }}:${{ steps.prepare.outputs.version }} | |
docker run --rm mplatform/mquery ${{ steps.prepare.outputs.docker_image }}:${{ steps.prepare.outputs.version }}-noroot | |
- | |
name: Clear | |
if: always() && github.event_name != 'pull_request' | |
run: | | |
rm -f ${HOME}/.docker/config.json |