This commit is contained in:
D Ther 2020-10-25 02:31:19 +06:30
parent 328a6c3ba2
commit c088a98a3b
No known key found for this signature in database
GPG key ID: 4729D840D81DC783
7 changed files with 42 additions and 63 deletions

8
tem Normal file
View file

@ -0,0 +1,8 @@
FROM golang:1.13
WORKDIR /src
COPY . .
RUN go get -u github.com/sethvargo/go-githubactions/... && go build -o /bin/google-chat-action
ENTRYPOINT ["/bin/google-chat-action"]