Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

Prepare for release v1.0.0 #1

Merged
merged 5 commits into from
Mar 2, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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