Add README.md and first Radicale attempt
This commit is contained in:
parent
35d4036209
commit
b8abe60bbd
2 changed files with 58 additions and 0 deletions
41
.forgejo/workflows/radicale-docker.yml
Normal file
41
.forgejo/workflows/radicale-docker.yml
Normal file
|
@ -0,0 +1,41 @@
|
|||
name: Build and Publish Radicale Docker
|
||||
|
||||
on:
|
||||
workflow_dispatch:
|
||||
|
||||
env:
|
||||
REGISTRY: forge.niblock.tech
|
||||
REGISTRY_USERNAME: ${{ github.actor }}
|
||||
REGISTRY_PASSWORD: ${{ secrets.REGISTRY_TOKEN }}
|
||||
REGISTRY_IMAGE_NAME: "radicale"
|
||||
|
||||
jobs:
|
||||
release:
|
||||
name: Build
|
||||
runs-on: docker
|
||||
steps:
|
||||
- name: Checkout the repository
|
||||
uses: actions/checkout@v4
|
||||
with:
|
||||
repository: https://forge.niblock.tech/oss/radicale
|
||||
|
||||
- name: Login to the GitHub Container Registry
|
||||
uses: actions/docker-login-action@v3
|
||||
with:
|
||||
registry: ${{ env.REGISTRY }}
|
||||
username: ${{ env.REGISTRY_USERNAME }}
|
||||
password: ${{ env.REGISTRY_PASSWORD }}
|
||||
|
||||
- name: Extract repository metadata (tags, labels)
|
||||
id: meta
|
||||
uses: actions/docker-metadata-action@v5
|
||||
with:
|
||||
images: ${{ env.REGISTRY }}/${{ env.REGISTRY_IMAGE_NAME }}
|
||||
|
||||
- name: Build and publish latest
|
||||
uses: actions/docker-build-push-action@v5
|
||||
with:
|
||||
context: .
|
||||
push: true
|
||||
tags: ${{ steps.meta.outputs.tags }}
|
||||
labels: ${{ steps.meta.outputs.labels }}
|
17
README.md
Normal file
17
README.md
Normal file
|
@ -0,0 +1,17 @@
|
|||
# OSS Container Builds
|
||||
|
||||
This repository holds the build jobs for the [OSS
|
||||
Mirrors](https://forge.niblock.tech/oss).
|
||||
|
||||
The mirrors all include their own build jobs, but would require some minor
|
||||
changes to work with my forge. This repository collects the jobs with the
|
||||
changes.
|
||||
|
||||
## Configured Jobs
|
||||
|
||||
### Radicale
|
||||
|
||||
[Source](https://github.com/Kozea/Radicale) ||
|
||||
[Mirror](https://forge.niblock.tech/oss/Radicale) ||
|
||||
[Job]() ||
|
||||
[Container]() ||
|
Loading…
Add table
Add a link
Reference in a new issue