Skip to content

HDDS-11632. Publish images to GitHub container registry #107

HDDS-11632. Publish images to GitHub container registry

HDDS-11632. Publish images to GitHub container registry #107

Workflow file for this run

# Licensed to the Apache Software Foundation (ASF) under one or more
# contributor license agreements. See the NOTICE file distributed with
# this work for additional information regarding copyright ownership.
# The ASF licenses this file to You under the Apache License, Version 2.0
# (the "License"); you may not use this file except in compliance with
# the License. You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
name: build
# This workflow builds the Docker image if it does not exists already.
# For non-PR runs, it also pushes the image to the registry, tagging it by the full SHA of the commit.
on:
pull_request:
types: [opened, ready_for_review, synchronize]
workflow_call:
outputs:
image-id:
description: "Docker image ID in repo/owner/name:tag format"
value: ${{ jobs.build.outputs.image-id }}
concurrency:
group: ${{ github.sha }}
cancel-in-progress: false
env:
# if changed, also update password in `login` step
DEFAULT_REGISTRY: ghcr.io
permissions:
contents: read
packages: write
jobs:
build:
runs-on: ubuntu-latest
outputs:
image-id: ${{ steps.meta.outputs.tags }}
steps:
- name: Generate image ID
id: meta
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81
with:
images: |
${{ env.DEFAULT_REGISTRY }}/${{ github.repository_owner }}/ozone-runner
tags: |
# keep single item
# any further tags should be added only in tag.yaml, not here
type=sha,prefix=,format=long
- name: Check if image exists
id: pull
run: |
success=false
if docker pull "$DOCKER_METADATA_OUTPUT_TAGS"; then
success=true
fi
echo "success=$success" >> $GITHUB_OUTPUT
- name: Login to ${{ env.DEFAULT_REGISTRY }}
id: login
if: ${{ github.event_name != 'pull_request' && steps.pull.outputs.success == 'false' }}
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567
with:
registry: ${{ env.DEFAULT_REGISTRY }}
username: ${{ github.repository_owner }}
password: ${{ secrets.GITHUB_TOKEN }} # update this if changing DEFAULT_REGISTRY
- name: Build and push image to ${{ env.DEFAULT_REGISTRY }}
id: build
if: ${{ steps.pull.outputs.success == 'false' }}
uses: docker/build-push-action@4f58ea79222b3b9dc2c8bbdd6debcef730109a75
with:
platforms: linux/amd64
push: ${{ github.event_name != 'pull_request' }}
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}