Skip to content

Commit

Permalink
[patch] Remove go mod tidy from base image / Add valid token to semve…
Browse files Browse the repository at this point in the history
…r job (#886)

* 🔥 Remove go mod tidy from base Docker image

Signed-off-by: Rintaro Okamura <[email protected]>

* 📦 Add token to push to master branch

Signed-off-by: Rintaro Okamura <[email protected]>
  • Loading branch information
rinx authored Dec 16, 2020
1 parent 8d62c74 commit 19179f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
1 change: 1 addition & 0 deletions .github/workflows/semver.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@ jobs:
uses: actions/checkout@v2
with:
fetch-depth: 0
token: ${{ secrets.DISPATCH_TOKEN }}
- name: Get latest gitwerk
run: |
curl -LO "https://github.com/rinx/gitwerk/releases/download/v0.2.2/gitwerk-linux-amd64.zip"
Expand Down
3 changes: 1 addition & 2 deletions dockers/base/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,5 +48,4 @@ WORKDIR ${GOPATH}/src/github.com/vdaas/vald
COPY go.mod .
COPY go.sum .

RUN go mod tidy \
&& go mod download
RUN go mod download

0 comments on commit 19179f3

Please sign in to comment.