forked from metaschema-framework/oscal-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Set up build in GHA of container for metaschema-framework#22
- Loading branch information
1 parent
f4b6a76
commit dbbda01
Showing
1 changed file
with
69 additions
and
0 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,13 @@ on: | |
type: boolean | ||
name: Build and Test | ||
env: | ||
HOME_REPO: metaschema-framework/oscal-cli | ||
IMAGE_NAME: metaschema-framework/oscal-cli-extended | ||
REGISTRY: ghcr.io | ||
# Docs: github.com/docker/metadata-action/?tab=readme-ov-file#typesha | ||
DOCKER_METADATA_PR_HEAD_SHA: true | ||
# https://github.com/docker/metadata-action?tab=readme-ov-file#annotations | ||
DOCKER_METADATA_ANNOTATIONS_LEVELS: manifest,index | ||
INPUT_FAIL_ON_ERROR: ${{ github.event.inputs.linkcheck_fail_on_error || 'true' }} | ||
INPUT_ISSUE_ON_ERROR: ${{ github.event.inputs.linkcheck_create_issue || 'false' }} | ||
MAVEN_VERSION: 3.9.8 | ||
|
@@ -73,6 +80,68 @@ jobs: | |
uses: github/codeql-action/analyze@c36620d31ac7c881962c3d9dd939c40ec9434f2b | ||
with: | ||
upload: ${{ github.ref_name == 'develop' && 'always' || 'never' }} | ||
- if: github.repository == env.HOME_REPO | ||
name: Container image QEMU setup for cross-arch builds | ||
id: image_setup_qemu | ||
uses: docker/setup-qemu-action@49b3bc8e6bdd4a60e6116a5414239cba5943d3cf | ||
- if: github.repository == env.HOME_REPO | ||
name: Container image buildx setup for cross-arch builds | ||
id: image_setup_buildx | ||
with: | ||
platforms: | | ||
linux/amd64 | ||
uses: docker/setup-buildx-action@988b5a0280414f521da01fcc63a27aeeb4b104db | ||
- if: github.repository == env.HOME_REPO | ||
name: Container image login | ||
id: image_login | ||
uses: docker/login-action@65b78e6e13532edd9afa3aa52ac7964289d1a9c1 | ||
with: | ||
registry: ${{ env.REGISTRY }} | ||
username: ${{ github.actor }} | ||
password: ${{ secrets.GITHUB_TOKEN }} | ||
- if: github.repository == env.HOME_REPO | ||
name: Container image metadata and tag generation | ||
id: image_metadata | ||
uses: docker/metadata-action@8e5442c4ef9f78752691e2d8f8d19755c6f78e81 | ||
with: | ||
images: | ||
${{ env.REGISTRY }}/${{ env.IMAGE_NAME }} | ||
tags: | | ||
type=sha,prefix=,suffix=,format=long | ||
type=ref,event=branch | ||
type=ref,event=tag | ||
type=ref,event=pr | ||
# flavor: | | ||
# latest=true | ||
annotations: | | ||
maintainers="Metaschema Community Admin <[email protected]>" | ||
org.opencontainers.image.authors="Metaschema Community Admin <[email protected]>" | ||
org.opencontainers.image.documentation="https://metaschema.dev" | ||
org.opencontainers.image.source="https://github.com/metaschema-framework/oscal-cli" | ||
org.opencontainers.image.vendor="Metaschema Community" | ||
org.opencontainers.image.title="oscal-cli-extended" | ||
org.opencontainers.image.description="Metaschema-powered CLI tool for processing OSCAL"" | ||
org.opencontainers.image.licenses="CC0-1.0" | ||
- if: github.repository == env.HOME_REPO && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/feature') || startsWith(github.ref, 'refs/heads/v')) | ||
name: Container image registry push | ||
id: image_registry_push | ||
uses: docker/build-push-action@f2a1d5e99d037542a71f64918e516c093c6f3fc4 | ||
with: | ||
build-args: | | ||
CONTAINER_BUILD=no | ||
push: true | ||
tags: ${{ steps.image_metadata.outputs.tags }} | ||
labels: ${{ steps.image_metadata.outputs.annotations }} | ||
platforms: linux/amd64,linux/arm64 | ||
cache-from: type=gha | ||
cache-to: type=gha,mode=max | ||
- if: github.repository == env.HOME_REPO && (github.ref == 'refs/heads/main' || github.ref == 'refs/heads/develop' || startsWith(github.ref, 'refs/heads/feature') || startsWith(github.ref, 'refs/heads/v')) | ||
name: Container image push attestations | ||
uses: actions/attest-build-provenance@1c608d11d69870c2092266b3f9a6f3abbf17002c | ||
with: | ||
subject-name: ${{ env.REGISTRY }}/${{ env.IMAGE_NAME}} | ||
subject-digest: ${{ steps.image_registry_push.outputs.digest }} | ||
push-to-registry: false | ||
build-website: | ||
name: Website | ||
runs-on: ubuntu-20.04 | ||
|