Set up github action.

This commit is contained in:
2025-12-10 21:34:25 +00:00
parent 1fba795fba
commit 9b7e07b3c6
8 changed files with 122 additions and 83 deletions
+14
View File
@@ -0,0 +1,14 @@
FROM alpine:3.21
ARG TARGETPLATFORM
RUN apk add --no-cache ca-certificates tzdata git
COPY ${TARGETPLATFORM}/git-velocity /usr/local/bin/git-velocity
COPY config.example.yaml /etc/git-velocity/config.example.yaml
RUN chmod +x /usr/local/bin/git-velocity
WORKDIR /workspace
ENTRYPOINT ["/usr/local/bin/git-velocity"]
CMD ["--help"]