nerd-fonts/.github/workflows/docker-release.yml

60 lines
1.6 KiB
YAML
Raw Normal View History

2020-03-06 23:12:46 +01:00
name: Docker release
on:
push:
branches:
- master
paths:
# Keep this in line with .dockerignore
2020-03-06 23:12:46 +01:00
- bin/scripts/docker-entrypoint.sh
- bin/scripts/name_parser/Fontname*.py
2020-03-06 23:12:46 +01:00
- src/glyphs/**
- .dockerignore
- Dockerfile
- font-patcher
workflow_dispatch:
2020-03-06 23:12:46 +01:00
jobs:
publish-image:
name: Publish image
runs-on: ubuntu-latest
if: ${{ github.repository_owner == 'ryanoasis' }}
2020-03-06 23:12:46 +01:00
steps:
- name: Checkout
uses: actions/checkout@v3
# Docker Meta provides automatic, standard tagging
- name: Docker meta
id: meta
uses: docker/metadata-action@v4
with:
images: nerdfonts/patcher
flavor: latest=true
# QEMU allows us to build container images for multiple architectures (amd64, ARM etc...)
- name: Set up QEMU
uses: docker/setup-qemu-action@v2
with:
platforms: linux/amd64,linux/arm64
# Docker Buildx provides Buildkit support
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v2
with:
platforms: linux/amd64,linux/arm64
- name: Login to Docker Hub
uses: docker/login-action@v2
with:
username: ${{ secrets.DOCKER_USER }}
password: ${{ secrets.DOCKER_PAT }}
- name: Build and push
uses: docker/build-push-action@v3
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}