mirror of
https://github.com/kanidm/kanidm.git
synced 2025-02-24 04:57:00 +01:00
Set lowercase owner name in tag (#2534)
This commit is contained in:
parent
002ab13698
commit
e880a63be4
10
.github/workflows/docker_build_radiusd.yml
vendored
10
.github/workflows/docker_build_radiusd.yml
vendored
|
@ -12,6 +12,14 @@ concurrency:
|
||||||
cancel-in-progress: true
|
cancel-in-progress: true
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
|
|
||||||
|
set_lower_case_name:
|
||||||
|
name: set lower case owner name
|
||||||
|
run: |
|
||||||
|
echo "OWNER_LC=${OWNER,,}" >>${GITHUB_ENV}
|
||||||
|
env:
|
||||||
|
OWNER: '${{ github.repository_owner }}'
|
||||||
|
|
||||||
radius_build:
|
radius_build:
|
||||||
name: Build radius Docker image
|
name: Build radius Docker image
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
|
@ -25,7 +33,7 @@ jobs:
|
||||||
uses: docker/build-push-action@v5
|
uses: docker/build-push-action@v5
|
||||||
with:
|
with:
|
||||||
platforms: linux/arm64,linux/amd64
|
platforms: linux/arm64,linux/amd64
|
||||||
tags: ghcr.io/${{ github.repository_owner }}/radius:devel
|
tags: ghcr.io/${{ env.OWNER_LC }}/radius:devel
|
||||||
file: rlm_python/Dockerfile
|
file: rlm_python/Dockerfile
|
||||||
# Must use OCI exporter for multi-arch: https://github.com/docker/buildx/pull/1813
|
# Must use OCI exporter for multi-arch: https://github.com/docker/buildx/pull/1813
|
||||||
outputs: type=oci,dest=/tmp/radius-docker.tar
|
outputs: type=oci,dest=/tmp/radius-docker.tar
|
||||||
|
|
Loading…
Reference in a new issue