diff --git a/CHANGELOG.md b/CHANGELOG.md index 9d241d4..b197178 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,7 @@ +## 1.0.1 + +- Fix binary permissions + ## 1.0.0 -Initial release +- Initial release diff --git a/Dockerfile b/Dockerfile index bcf9cf8..0f75f2b 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,7 @@ FROM alpine:3.18 LABEL org.opencontainers.image.description "Datadog query linter, for use mainly in CI" -COPY --chmod=700 datadog-query-linter /app/ +COPY --chmod=755 datadog-query-linter /app/ WORKDIR /app diff --git a/README.md b/README.md index 0b96c31..e8cc828 100644 --- a/README.md +++ b/README.md @@ -34,3 +34,14 @@ source ./.envrc make # or make test, make run, etc ``` + +## Releasing a new version + +Use the normal PR process to get your code merged, and then cut a tag: + +```bash +git tag v1.0.0 +git push origin v1.0.0 +``` + +This will kick off a goreleaser build, and the docker image should show up in the repo shortly thereafter.