Skip to content

Support Mac OS (linux/arm64) #19

Support Mac OS (linux/arm64)

Support Mac OS (linux/arm64) #19

name: Docker Publish for range3/texlive-ja
on:
push:
paths:
- '.github/workflows/docker-publish-texlive-ja.yml'
- '.devcontainer/**'
branches:
- master
tags:
- v*
jobs:
push:
if: github.repository == 'range3/texlive-ja-template'
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Login to Docker Hub
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
username: ${{ secrets.DOCKERHUB_USERNAME }}
password: ${{ secrets.DOCKERHUB_TOKEN }}
- name: Login to GitHub Container Registry
if: github.event_name != 'pull_request'
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Docker Meta
id: meta
uses: docker/metadata-action@v5
with:
images: |
${{ github.repository_owner }}/texlive-ja
ghcr.io/${{ github.repository_owner }}/texlive-ja
tags: |
type=ref,event=branch
type=semver,pattern={{version}}
type=semver,pattern={{major}}.{{minor}}
- name: Build and push
uses: docker/build-push-action@v6
with:
context: .devcontainer
file: .devcontainer/Dockerfile
platforms: linux/amd64,linux/arm64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/texlive-ja:buildcache
cache-to: type=registry,ref=ghcr.io/${{ github.repository_owner }}/texlive-ja:buildcache,mode=max