Skip to content

Commit

Permalink
WIP: Build containers with GHA
Browse files Browse the repository at this point in the history
  • Loading branch information
kaisalmen committed Aug 23, 2024
1 parent 87515ae commit cd52612
Showing 1 changed file with 64 additions and 0 deletions.
64 changes: 64 additions & 0 deletions .github/workflows/images.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
name: Build container images

on:
push:
branches:
- 'clangd-example'
workflow_dispatch:

env:
REGISTRY: ghcr.io
REPO_NAME: ${{ github.repository }}

jobs:
images:
name: container images build and deploy
runs-on: ubuntu-latest

permissions:
contents: read
packages: write
attestations: write
id-token: write

strategy:
matrix:
image_names: [ eclipse.jdt.ls, groovy, clangd ]

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 (tags, labels) for Docker
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 and push Docker image
id: push
uses: docker/build-push-action@v6
with:
context: ./packages/examples/resources/{{ matrix.image_names }}
push: true
tags: ${{ steps.meta.outputs.tags }}
labels: ${{ steps.meta.outputs.labels }}

- name: Generate artifact attestation
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

0 comments on commit cd52612

Please sign in to comment.