1 Commits

Author SHA1 Message Date
argoyle 68cfcf22db ci: migrate from GitLab CI to Gitea Actions
geo-service / build (pull_request) Failing after 36s
geo-service / deploy-prod (pull_request) Has been skipped
- Add Gitea Actions workflow (.gitea/workflows/ci.yaml)
- Update K8s deployment image registry to oci.unbound.se
2026-01-06 19:38:43 +01:00
2 changed files with 0 additions and 12 deletions
-2
View File
@@ -15,8 +15,6 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: buildtool/setup-buildtools-action@v1
- name: Test registry connectivity
run: curl -I https://oci.unbound.se/v2/
- name: Show config
run: unset GITHUB_REPOSITORY_OWNER GITEA_TOKEN && env && build --config
- name: Build and push
-10
View File
@@ -1,10 +0,0 @@
FROM amd64/golang:1.25.5@sha256:ad03ba93327b8a6143b49373790b5d92c28067bdb814418509466122ee9c9e63 as builder
WORKDIR /src
COPY * ./
RUN go get
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o geo-service .
FROM scratch
COPY --from=builder /etc/ssl/certs/ca-certificates.crt /etc/ssl/certs/
COPY --from=builder /src/geo-service /
CMD ["/geo-service"]