Build containers with GHA #9
Workflow file for this run
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: Build container images | |
on: | |
push: | |
branches: | |
- 'clangd-example' | |
workflow_dispatch: | |
env: | |
REGISTRY: ghcr.io | |
REPO_NAME: ${{ github.repository }} | |
jobs: | |
images-simple: | |
name: Images Build & Deploy | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
attestations: write | |
id-token: write | |
strategy: | |
matrix: | |
image_names: [ eclipse.jdt.ls, groovy ] | |
timeout-minutes: 15 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata | |
id: meta | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ env.REPO_NAME }}/${{ matrix.image_names }} | |
# enforce latest tag for now | |
tags: | | |
type=raw,value=latest | |
- name: Build & Push | |
id: push | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./packages/examples/resources/${{ matrix.image_names }} | |
file: ./packages/examples/resources/${{ matrix.image_names }}/Dockerfile | |
push: true | |
tags: ${{ steps.meta.outputs.tags }} | |
labels: ${{ steps.meta.outputs.labels }} | |
- name: Attest | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-name: ${{ env.REGISTRY }}/${{ env.REPO_NAME }}/${{ matrix.image_names }} | |
subject-digest: ${{ steps.push.outputs.digest }} | |
push-to-registry: true | |
images-clangd: | |
name: Clangd Build & Deploy | |
runs-on: ubuntu-latest | |
permissions: | |
contents: read | |
packages: write | |
attestations: write | |
id-token: write | |
timeout-minutes: 60 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Login to GitHub Container Registry | |
uses: docker/login-action@v3 | |
with: | |
registry: ${{ env.REGISTRY }} | |
username: ${{ github.actor }} | |
password: ${{ secrets.GITHUB_TOKEN }} | |
- name: Extract metadata (configure) | |
id: meta_configure | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ env.REPO_NAME }}/clangd-configure | |
# enforce latest tag for now | |
tags: | | |
type=raw,value=latest | |
- name: Build & Push (configure) | |
id: push_configure | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./packages/examples/resources/clangd | |
file: ./packages/examples/resources/clangd/configure.Dockerfile | |
push: true | |
tags: ${{ steps.meta_configure.outputs.tags }} | |
labels: ${{ steps.meta_configure.outputs.labels }} | |
- name: Attest (configure) | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-name: ${{ env.REGISTRY }}/${{ env.REPO_NAME }}/clangd-configure | |
subject-digest: ${{ steps.push_configure.outputs.digest }} | |
push-to-registry: true | |
- name: Extract metadata (build) | |
id: meta_build | |
uses: docker/metadata-action@v5 | |
with: | |
images: | | |
${{ env.REGISTRY }}/${{ env.REPO_NAME }}/clangd-build | |
# enforce latest tag for now | |
tags: | | |
type=raw,value=latest | |
- name: Build & Push (build) | |
id: push_build | |
uses: docker/build-push-action@v6 | |
with: | |
context: ./packages/examples/resources/clangd | |
file: ./packages/examples/resources/clangd/build.Dockerfile | |
push: true | |
tags: ${{ steps.meta_build.outputs.tags }} | |
labels: ${{ steps.meta_build.outputs.labels }} | |
- name: Attest (build) | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-name: ${{ env.REGISTRY }}/${{ env.REPO_NAME }}/clangd-build | |
subject-digest: ${{ steps.push_build.outputs.digest }} | |
push-to-registry: true |