Skip to content

v1.0.1

Compare
Choose a tag to compare
@github-actions github-actions released this 07 Jan 18:27
· 26 commits to master since this release
488e238

Installation

OSX

wget https://github.com/busyloop/envcat/releases/download/v1.0.1/envcat-1.0.1.darwin-x86_64
chmod +x envcat-1.0.1.darwin-x86_64
sudo mv envcat-1.0.1.darwin-x86_64 /usr/local/bin/envcat
sudo ln -sf /usr/local/bin/envcat /usr/local/bin/envtpl

Linux

wget https://github.com/busyloop/envcat/releases/download/v1.0.1/envcat-1.0.1.linux-x86_64
chmod +x envcat-1.0.1.linux-x86_64
sudo mv envcat-1.0.1.linux-x86_64 /usr/bin/envcat
sudo ln -sf /usr/bin/envcat /usr/bin/envtpl

Dockerfile 🐳

linux-x86_64

# Install envcat (linux-x86_64)
ARG envcat_version=1.0.1
ARG envcat_sha256=490d4a57bd1d4a7e9b39e13b656de88c6ce1338f9e6b16cdff4d36cc6c0489d3
ADD --checksum=sha256:${envcat_sha256} https://github.com/busyloop/envcat/releases/download/v${envcat_version}/envcat-${envcat_version}.linux-x86_64 /envcat
RUN chmod +x /envcat

linux-aarch64

# Install envcat (linux-aarch64)
ARG envcat_version=1.0.1
ARG envcat_sha256=5e902ab7fa0e401bcb8162a630f5faf7dae8da40022fd664bd6df255b52d4a95
ADD --checksum=sha256:${envcat_sha256} https://github.com/busyloop/envcat/releases/download/v${envcat_version}/envcat-${envcat_version}.linux-aarch64 /envcat
RUN chmod +x /envcat