diff --git a/.drone.jsonnet b/.drone.jsonnet index d603117..7ef79ff 100644 --- a/.drone.jsonnet +++ b/.drone.jsonnet @@ -136,6 +136,7 @@ local PipelineBuildContainer(arch='amd64') = { image: 'golang:1.18', commands: [ 'make build', + 'ls -l dist/drone-github-comment', ], }, { diff --git a/.drone.yml b/.drone.yml index 02a8f41..9822b0b 100644 --- a/.drone.yml +++ b/.drone.yml @@ -108,6 +108,7 @@ steps: image: golang:1.18 commands: - make build + - ls -l dist/drone-github-comment - name: dryrun image: thegeeklab/drone-docker:19 @@ -180,6 +181,7 @@ steps: image: golang:1.18 commands: - make build + - ls -l dist/drone-github-comment - name: dryrun image: thegeeklab/drone-docker:19 @@ -252,6 +254,7 @@ steps: image: golang:1.18 commands: - make build + - ls -l dist/drone-github-comment - name: dryrun image: thegeeklab/drone-docker:19 @@ -454,6 +457,6 @@ depends_on: --- kind: signature -hmac: 62584eb04cd4935f8bf4ca84d3b137f51d022ffc0b7c96494bbc15545cb991bb +hmac: 437f7ee83558c821e40d26af06e99e1e1a7d805cbf8c7b409747711dd696f193 ... diff --git a/docker/Dockerfile.amd64 b/docker/Dockerfile.amd64 index d5b6feb..10bcca3 100644 --- a/docker/Dockerfile.amd64 +++ b/docker/Dockerfile.amd64 @@ -8,4 +8,5 @@ LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-githu LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-github-comment" ADD dist/drone-github-comment /bin/ -ENTRYPOINT [ "/bin/drone-github-comment" ] + +ENTRYPOINT ["/bin/drone-github-comment"] diff --git a/docker/Dockerfile.arm b/docker/Dockerfile.arm index c06c54b..669f5c4 100644 --- a/docker/Dockerfile.arm +++ b/docker/Dockerfile.arm @@ -8,4 +8,5 @@ LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-githu LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-github-comment" ADD dist/drone-github-comment /bin/ -ENTRYPOINT [ "/bin/drone-github-comment" ] + +ENTRYPOINT ["/bin/drone-github-comment"] diff --git a/docker/Dockerfile.arm64 b/docker/Dockerfile.arm64 index 14f8032..e9b6428 100644 --- a/docker/Dockerfile.arm64 +++ b/docker/Dockerfile.arm64 @@ -8,4 +8,5 @@ LABEL org.opencontainers.image.source="https://github.com/thegeeklab/drone-githu LABEL org.opencontainers.image.documentation="https://github.com/thegeeklab/drone-github-comment" ADD dist/drone-github-comment /bin/ -ENTRYPOINT [ "/bin/drone-github-comment" ] + +ENTRYPOINT ["/bin/drone-github-comment"]