Skip to content

Commit 9411d52

Browse files
committed
Version 0.1.5 release
1 parent f0f63a1 commit 9411d52

File tree

3 files changed

+2
-3
lines changed

3 files changed

+2
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ FROM python:3.7-alpine
2020
LABEL maintainer="sobolevn@wemake.services"
2121
LABEL vendor="wemake.services"
2222

23-
ENV DOTENV_LINTER_VERSION='0.1.4'
23+
ENV DOTENV_LINTER_VERSION='0.1.5'
2424
ENV REVIEWDOG_VERSION='v0.9.14'
2525

2626
RUN apk add --no-cache bash git wget

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
[tool.poetry]
22
name = "dotenv-linter"
3-
version = "0.1.4"
3+
version = "0.1.5"
44
description = "Linting dotenv files like a charm!"
55
authors = [
66
"sobolevn <mail@sobolevn.me>"

scripts/entrypoint.sh

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,6 @@ elif [ "$INPUT_REPORTER" == 'github-pr-review' ] ||
1818
export REVIEWDOG_GITHUB_API_TOKEN="$GITHUB_TOKEN"
1919

2020
output=$(dotenv-linter "$INPUT_OPTIONS" 2>&1)
21-
echo "dotenv output: $output"
2221
echo "$output" | reviewdog -efm='%f:%l %m' -reporter="$INPUT_REPORTER" -level=error
2322
# `reviewdog` does not fail with any status code, so we have to get dirty:
2423
status=$(test "$output" = ''; echo $?)

0 commit comments

Comments
 (0)