Skip to content

Commit

Permalink
Merge pull request #1 from insidieux/release-v1.0.0
Browse files Browse the repository at this point in the history
Prepare for release v1.0.0
  • Loading branch information
insidieux authored Mar 2, 2021
2 parents 8b2c845 + 7799e6e commit 7458e70
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 8 deletions.
13 changes: 8 additions & 5 deletions .github/workflows/push.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,12 +3,10 @@ name: Push
on:
push:
branches:
- '*'
paths-ignore:
- '**.md'
- master
pull_request:
paths-ignore:
- '**.md'
branches:
- master

jobs:
test:
Expand All @@ -29,3 +27,8 @@ jobs:
run: make test
- name: Lint
run: make lint
- name: Send code coverage report
uses: codecov/codecov-action@v1
with:
token: ${{ secrets.CODECOV_TOKEN }}
file: coverage.out
2 changes: 1 addition & 1 deletion docs/user-guide.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ for your platform.
Use the [Docker image](https://hub.docker.com/repository/docker/insidieux/inizio)

```shell
docker pull insidieux/inizio:%version%
docker pull insidieux/inizio:v1.0.0
```

### go get
Expand Down
3 changes: 1 addition & 2 deletions internal/builtin/layout/embed/Dockerfile.gotmpl
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,7 @@ ARG GO_VERSION={{ .Golang.Version }}
FROM golang:${GO_VERSION} as vendor
COPY . /project
WORKDIR /project
RUN go mod tidy && \
go mod vendor
RUN go mod tidy && go mod vendor && mkdir -p vendor

### Build binary
FROM golang:${GO_VERSION} as build-binary
Expand Down

0 comments on commit 7458e70

Please sign in to comment.