Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Introduce the make task to test release without publish
Before the marking the release it is usefull to test if docker image is working correctly. Use goreleaser to test how it builds the image and run tests with commands: ```shell $ docker run --name toxiproxy-server -d --net=host -it ghcr.io/shopify/toxiproxy:2.1.6-next-amd64 $ docker run --entrypoint=/toxiproxy-cli --rm --net=host -it ghcr.io/shopify/toxiproxy:2.1.6-next-amd64 list $ docker run --entrypoint=/toxiproxy-cli --rm --net=host -it ghcr.io/shopify/toxiproxy:2.1.6-next-amd64 create -l localhost:3000 -u localhost:80 local $ docker run --entrypoint=/toxiproxy-cli --rm --net=host -it ghcr.io/shopify/toxiproxy:2.1.6-next-amd64 list $ docker stop toxiproxy-server $ docker rm toxiproxy-server ```
- Loading branch information