feat: pipeline container build
Some checks failed
Sample Testing / my_job (push) Failing after 1m27s
CI / lint (push) Failing after 2m51s
CI / release (push) Failing after 4m2s

This commit is contained in:
Marcel S. Henselin 2026-04-17 16:03:31 +02:00
parent cceaea7cb7
commit 0414cf6dfb
6 changed files with 115 additions and 37 deletions

10
Dockerfile.big Normal file
View file

@ -0,0 +1,10 @@
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"]