Compare commits

..

No commits in common. "8eea124257eec869f51aa5c8c770e7bb92d48591" and "8aec2794e88cc9a25ab42be6254e4fad386db281" have entirely different histories.

2 changed files with 4 additions and 1 deletions

View File

@ -25,3 +25,5 @@ steps:
when:
status:
- "success"
- echo hello
- echo world

View File

@ -1,4 +1,4 @@
FROM golang:alpine as builder
FROM golang:1.18 as builder
ENV GO111MODULE=on \
GOPROXY=https://goproxy.cn,direct
@ -12,6 +12,7 @@ COPY . .
RUN GOOS=linux GOARCH=amd64 go build .
FROM alpine
WORKDIR /app