mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-23 20:47:01 +01:00
74 lines
2.4 KiB
YAML
74 lines
2.4 KiB
YAML
---
|
|
name: Container - Radiusd
|
|
|
|
# This is always built and uploads an OCI image as a build artifact, but only
|
|
# pushes to "ghcr.io/kanidm/radius:devel" when on "kanidm/kanidm@master".
|
|
"on":
|
|
pull_request:
|
|
push:
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
jobs:
|
|
set_lower_case_name:
|
|
runs-on: ubuntu-latest
|
|
name: set lower case owner name
|
|
steps:
|
|
- id: step1
|
|
run: |
|
|
echo "OWNER_LC=${OWNER,,}" >> "${GITHUB_OUTPUT}"
|
|
env:
|
|
OWNER: '${{ github.repository_owner }}'
|
|
outputs:
|
|
owner_lc: ${{ steps.step1.outputs.OWNER_LC }}
|
|
|
|
radius_build:
|
|
name: Build radius Docker image
|
|
runs-on: ubuntu-latest
|
|
needs: set_lower_case_name
|
|
steps:
|
|
- uses: actions/checkout@v4
|
|
- name: Set up QEMU
|
|
uses: docker/setup-qemu-action@v3
|
|
- name: Set up Docker Buildx
|
|
uses: docker/setup-buildx-action@v3
|
|
- name: Build radius
|
|
uses: docker/build-push-action@v5
|
|
with:
|
|
platforms: linux/arm64,linux/amd64
|
|
tags: ghcr.io/${{ needs.set_lower_case_name.outputs.owner_lc }}/radius:devel
|
|
file: rlm_python/Dockerfile
|
|
# Must use OCI exporter for multi-arch: https://github.com/docker/buildx/pull/1813
|
|
outputs: type=oci,dest=/tmp/radius-docker.tar
|
|
- name: Upload artifact
|
|
uses: actions/upload-artifact@v4
|
|
with:
|
|
name: radius-docker
|
|
path: /tmp/radius-docker.tar
|
|
|
|
radius_push:
|
|
name: Push radius Docker image
|
|
# This step is split so that we don't apply "packages: write" permission
|
|
# except when uploading the final Docker image to GHCR.
|
|
runs-on: ubuntu-latest
|
|
if: github.ref == 'refs/heads/master' && github.repository == 'kanidm/kanidm'
|
|
needs: radius_build
|
|
permissions:
|
|
packages: write
|
|
|
|
steps:
|
|
- name: Download artifact
|
|
uses: actions/download-artifact@v4
|
|
with:
|
|
name: radius-docker
|
|
path: /tmp
|
|
|
|
# Docker won't directly import OCI images and keep their multi-arch
|
|
# features, but ORAS will: https://oras.land/docs/commands/oras_copy
|
|
- name: Push image to GHCR
|
|
run: |
|
|
echo "${{ secrets.GITHUB_TOKEN }}" | oras login -u "${{ github.actor }}" --password-stdin ghcr.io
|
|
oras copy --from-oci-layout "/tmp/radius-docker.tar:devel" "ghcr.io/${{ github.repository_owner }}/radius:devel"
|