fix: url params
All checks were successful
Sample Testing / my_job (push) Successful in 2m34s

This commit is contained in:
Marcel S. Henselin 2026-04-17 13:39:22 +02:00
parent f178b6fc09
commit c55fad7215

View file

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