Consistently use projectType
as the ID type for projects
#3564
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: Docker Build | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
branches: | |
- main | |
tags: | |
- "[0-9]+.[0-9]+.[0-9]+" | |
workflow_dispatch: | |
env: | |
GRADLE_OPTS: -Dorg.gradle.daemon=false | |
REGISTRY: ghcr.io | |
jobs: | |
disk_space: | |
name: Docker Build | |
runs-on: ubuntu-24.04 | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
with: | |
fetch-depth: 0 | |
- name: Free Disk Space | |
uses: ./.github/actions/free-disk-space | |
- name: Setup Gradle | |
uses: gradle/actions/setup-gradle@0bdd871935719febd78681f197cd39af5b6e16a6 # v4 | |
- name: Get ORT version | |
run: | | |
ORT_VERSION=$(./gradlew -q properties --property version | sed -nr "s/version: (.+)/\1/p") | |
echo "ORT_VERSION=${ORT_VERSION}" >> $GITHUB_ENV | |
- name: Set up Docker Buildx | |
uses: docker/setup-buildx-action@6524bf65af31da8d45b59e8c27de4bd072b392f5 # v3 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@9780b0c442fbb1117ed29e0efdff1e18412f7567 # v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract Metadata for 'ort' Docker Image | |
id: meta-ort | |
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5 | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ github.repository_owner }}/ort | |
tags: | | |
type=pep440,pattern={{version}} | |
type=raw,value=${{ env.ORT_VERSION }} | |
type=ref,event=branch | |
type=ref,event=tag | |
type=sha | |
- name: Build & Push 'ort' Docker Image | |
if: ${{ github.event_name != 'pull_request' }} | |
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6 | |
with: | |
context: . | |
push: true | |
tags: ${{ steps.meta-ort.outputs.tags }} | |
labels: ${{ steps.meta-ort.outputs.labels }} | |
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository_owner }}/ort:cache | |
cache-to: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository_owner }}/ort:cache,mode=max | |
build-args: ORT_VERSION=${{ env.ORT_VERSION }} | |
sbom: true | |
- name: Build 'ort' Docker Image | |
if: ${{ github.event_name == 'pull_request' }} | |
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6 | |
with: | |
context: . | |
tags: ${{ steps.meta-ort.outputs.tags }} | |
labels: ${{ steps.meta-ort.outputs.labels }} | |
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository_owner }}/ort:cache | |
build-args: ORT_VERSION=${{ env.ORT_VERSION }} | |
sbom: true | |
- name: Extract Metadata for 'ort-minimal' Docker Image | |
id: meta-ort-minimal | |
uses: docker/metadata-action@369eb591f429131d6889c46b94e711f089e6ca96 # v5 | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ github.repository_owner }}/ort-minimal | |
tags: | | |
type=pep440,pattern={{version}} | |
type=raw,value=${{ env.ORT_VERSION }} | |
type=ref,event=branch | |
type=ref,event=tag | |
type=sha | |
- name: Build & Push 'ort-minimal' Docker Image | |
uses: docker/build-push-action@48aba3b46d1b1fec4febb7c5d0c644b249a11355 # v6 | |
with: | |
context: . | |
# Do not "cache-to" here to not overwrite additional layers from the "full" image, which also contains all | |
# layers present in the "minimal" image anyway. | |
push: ${{ github.event_name != 'pull_request' }} | |
tags: ${{ steps.meta-ort-minimal.outputs.tags }} | |
labels: ${{ steps.meta-ort-minimal.outputs.labels }} | |
target: minimal | |
cache-from: type=registry,ref=${{ env.REGISTRY }}/${{ github.repository_owner }}/ort:cache | |
build-args: ORT_VERSION=${{ env.ORT_VERSION }} | |
sbom: true | |
- name: Print Disk Space | |
run: df -h |