Skip to content

docker publish

docker publish #6

Workflow file for this run

name: docker publish
on:
push:
tags:
- '*'
workflow_dispatch:
inputs:
usd_version:
description: 'OpenUSD version to build (e.g. 26.05). The ghcr.io/plattar/python-usd:version-<usd_version> base image must already exist.'
required: true
default: '26.05'
type: string
image_tag:
description: 'Image tag to publish (defaults to the OpenUSD version above).'
required: false
default: ''
type: string
tag_latest:
description: 'Also publish the image as :latest.'
required: false
default: false
type: boolean
env:
REGISTRY: ghcr.io
jobs:
setup:
runs-on: ubuntu-latest
outputs:
usd_version: ${{ steps.derive.outputs.usd_version }}
image_tag: ${{ steps.derive.outputs.image_tag }}
image_name: ${{ steps.derive.outputs.image_name }}
tag_latest: ${{ steps.derive.outputs.tag_latest }}
steps:
- name: derive build parameters
id: derive
run: |
set -euo pipefail
if [[ "${{ github.event_name }}" == "workflow_dispatch" ]]; then
usd_version="${{ inputs.usd_version }}"
image_tag="${{ inputs.image_tag }}"
tag_latest="${{ inputs.tag_latest }}"
else
ref="${GITHUB_REF#refs/tags/}"
usd_version="${ref#v}"
image_tag="$ref"
tag_latest="true"
fi
if [[ -z "$image_tag" ]]; then
image_tag="$usd_version"
fi
image_name="$(echo "${{ github.repository_owner }}/python-usd-ar" | tr '[:upper:]' '[:lower:]')"
echo "usd_version=$usd_version" >> "$GITHUB_OUTPUT"
echo "image_tag=$image_tag" >> "$GITHUB_OUTPUT"
echo "image_name=$image_name" >> "$GITHUB_OUTPUT"
echo "tag_latest=$tag_latest" >> "$GITHUB_OUTPUT"
echo "Building OpenUSD v${usd_version} -> ${{ env.REGISTRY }}/${image_name}:${image_tag} (latest=${tag_latest})"
build:
needs: setup
strategy:
fail-fast: false
matrix:
include:
- platform: linux/amd64
runner: ubuntu-latest
- platform: linux/arm64
runner: ubuntu-24.04-arm
runs-on: ${{ matrix.runner }}
timeout-minutes: 360
permissions:
contents: read
packages: write
steps:
- name: prepare platform pair
run: |
platform="${{ matrix.platform }}"
echo "PLATFORM_PAIR=${platform//\//-}" >> "$GITHUB_ENV"
- name: checkout code
uses: actions/checkout@v4
- name: setup buildx
uses: docker/setup-buildx-action@v3
- name: login to GHCR
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: build and push by digest
id: build
uses: docker/build-push-action@v6
with:
context: .
file: Dockerfile
platforms: ${{ matrix.platform }}
build-args: |
USD_VERSION=${{ needs.setup.outputs.usd_version }}
labels: |
org.opencontainers.image.title=python-usd-ar
org.opencontainers.image.version=${{ needs.setup.outputs.image_tag }}
org.opencontainers.image.revision=${{ github.sha }}
org.opencontainers.image.source=https://github.com/${{ github.repository }}
outputs: type=image,name=${{ env.REGISTRY }}/${{ needs.setup.outputs.image_name }},push-by-digest=true,name-canonical=true,push=true
- name: export digest
run: |
mkdir -p /tmp/digests
digest="${{ steps.build.outputs.digest }}"
touch "/tmp/digests/${digest#sha256:}"
- name: upload digest
uses: actions/upload-artifact@v4
with:
name: digests-${{ env.PLATFORM_PAIR }}
path: /tmp/digests/*
if-no-files-found: error
retention-days: 1
merge:
needs: [setup, build]
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- name: download digests
uses: actions/download-artifact@v4
with:
path: /tmp/digests
pattern: digests-*
merge-multiple: true
- name: setup buildx
uses: docker/setup-buildx-action@v3
- name: login to GHCR
uses: docker/login-action@v3
with:
registry: ${{ env.REGISTRY }}
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: assemble tag args
id: tags
run: |
set -euo pipefail
image="${{ env.REGISTRY }}/${{ needs.setup.outputs.image_name }}"
tags=("version-${{ needs.setup.outputs.image_tag }}" "${{ needs.setup.outputs.image_tag }}")
if [[ "${{ needs.setup.outputs.tag_latest }}" == "true" ]]; then
tags+=("latest")
fi
args=""
for t in "${tags[@]}"; do
args+=" -t ${image}:${t}"
done
echo "args=${args}" >> "$GITHUB_OUTPUT"
- name: create multi-arch manifest
working-directory: /tmp/digests
run: |
set -euo pipefail
image="${{ env.REGISTRY }}/${{ needs.setup.outputs.image_name }}"
# shellcheck disable=SC2046
docker buildx imagetools create ${{ steps.tags.outputs.args }} \
$(printf "${image}@sha256:%s " *)
- name: inspect
run: |
docker buildx imagetools inspect \
${{ env.REGISTRY }}/${{ needs.setup.outputs.image_name }}:${{ needs.setup.outputs.image_tag }}