notify/Dockerfile
Marcel S. Henselin c55fad7215
All checks were successful
Sample Testing / my_job (push) Successful in 2m34s
fix: url params
2026-04-17 13:39:22 +02:00

10 lines
203 B
Docker

FROM golang:1.26
WORKDIR /src
COPY . .
RUN go get -u github.com/sethvargo/go-githubactions/... \
&& go mod tidy \
&& go build -o /bin/google-chat-action
ENTRYPOINT ["/bin/google-chat-action"]