Update radicale build steps

This commit is contained in:
Bill Niblock 2025-06-06 12:09:25 -04:00
parent b8abe60bbd
commit f5cb1164ab

View file

@ -15,25 +15,28 @@ jobs:
runs-on: docker runs-on: docker
steps: steps:
- name: Checkout the repository - name: Checkout the repository
uses: actions/checkout@v4 uses: https://forge.niblock.tech/actions/checkout@v4
with: with:
repository: https://forge.niblock.tech/oss/radicale repository: https://forge.niblock.tech/oss/radicale
- name: Login to the GitHub Container Registry - name: Login to the GitHub Container Registry
uses: actions/docker-login-action@v3 uses: https://forge.niblock.tech/actions/docker-login-action@v3
with: with:
registry: ${{ env.REGISTRY }} registry: ${{ env.REGISTRY }}
username: ${{ env.REGISTRY_USERNAME }} username: ${{ env.REGISTRY_USERNAME }}
password: ${{ env.REGISTRY_PASSWORD }} password: ${{ env.REGISTRY_PASSWORD }}
- name: Extract repository metadata (tags, labels) - name: Extract repository metadata (tags, labels)
id: meta id: meta
uses: actions/docker-metadata-action@v5 uses: https://forge.niblock.tech/actions/docker-metadata-action@v5
with: with:
images: ${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }} images: ${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }}
- name: Setup Docker Buildx
uses: https://forge.niblock.tech/actions/setup-buildx-action@v3
- name: Build and publish latest - name: Build and publish latest
uses: actions/docker-build-push-action@v5 uses: https://forge.niblock.tech/actions/docker-build-push-action@v6
with: with:
context: . context: .
push: true push: true