feat: migrate to Gitea
Some checks failed
CI / validate_pr_title (pull_request) Failing after 0s
CI / ci (pull_request) Successful in 1m50s

This commit is contained in:
Luke Tainton 2025-01-15 22:32:35 +00:00
parent 07d47300c7
commit 4bc6a68cae
Signed by: luke
SSH Key Fingerprint: SHA256:D34npKT7UaiT/7gULqu7EPSLWWVAjTjXf4kKfJ/fQBo
5 changed files with 76 additions and 5 deletions

1
.gitea/CODEOWNERS Normal file
View File

@ -0,0 +1 @@
* @luke

View File

@ -0,0 +1,18 @@
name: Build Docker
on:
release:
types:
- published
jobs:
create_docker:
name: Create Docker Image
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/build-push-docker.yml@main
with:
release: ${{ gitea.event.release.name }}
registry: ${{ vars.PACKAGES_REGISTRY_URL }}
actions_username: ${{ vars.ACTIONS_USERNAME }}
ghcr_username: ${{ vars.GHCR_USERNAME }}
secrets:
ACTIONS_TOKEN: ${{ secrets.ACTIONS_TOKEN }}
GHCR_TOKEN: ${{ secrets.GHCR_TOKEN }}

22
.gitea/workflows/ci.yml Normal file
View File

@ -0,0 +1,22 @@
name: CI
on:
pull_request:
types:
- opened
- edited
- synchronize
- reopened
jobs:
validate_pr_title:
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/conventional-commit.yml@main
with:
commit_message: ${{ gitea.event.pull_request.title }}
ci:
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/ci-docker.yml@main
with:
python-version: 3.13
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}

View File

@ -0,0 +1,31 @@
name: Release
on:
workflow_dispatch:
push:
branches:
- master
- main
jobs:
test:
name: Test
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/ci-docker.yml@main
with:
python-version: 3.13
secrets:
SONAR_TOKEN: ${{ secrets.SONAR_TOKEN }}
SNYK_TOKEN: ${{ secrets.SNYK_TOKEN }}
create_release:
name: Create Release
needs: test
uses: https://git.tainton.uk/actions/gha-workflows/.gitea/workflows/create-release.yml@main
secrets:
ACTIONS_TOKEN: ${{ secrets.ACTIONS_TOKEN }}
print_release:
name: Print Release
runs-on: ubuntu-latest
needs: create_release
steps:
- run: echo "Created release ${{ needs.create_release.outputs.release_name }}."

View File

@ -1,13 +1,12 @@
FROM alpine:3.20 AS build
FROM alpine:3.21 AS build
LABEL maintainer="Luke Tainton <luke@tainton.uk>"
LABEL org.opencontainers.image.source="https://github.com/luketainton/docker-dnsmasq"
FROM build AS webproc
ENV WEBPROCVERSION 0.4.0
ENV WEBPROCURL https://github.com/jpillora/webproc/releases/download/v$WEBPROCVERSION/webproc_"$WEBPROCVERSION"_linux_amd64.gz
RUN apk add --no-cache curl
RUN curl -sL "$WEBPROCURL" | gzip -d - > /usr/local/bin/webproc
RUN chmod +x /usr/local/bin/webproc
RUN apk add --no-cache curl && \
curl -sL "$WEBPROCURL" | gzip -d - > /usr/local/bin/webproc && \
chmod +x /usr/local/bin/webproc
FROM build AS dnsmasq
RUN apk --no-cache add dnsmasq=2.90-r3