Skip to content

v1.1.0

Compare
Choose a tag to compare
@github-actions github-actions released this 08 Oct 23:05
· 5 commits to master since this release
788c8e6

Installation

macOS

wget https://github.com/busyloop/envcat/releases/download/v1.1.0/envcat-1.1.0.darwin-x86_64
chmod +x envcat-1.1.0.darwin-x86_64
sudo mv envcat-1.1.0.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.1.0/envcat-1.1.0.linux-x86_64
chmod +x envcat-1.1.0.linux-x86_64
sudo mv envcat-1.1.0.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.1.0
ARG envcat_sha256=1113adbd687393b0353fe93f77b8313d9842e1850875d8dea4fd461de5d53b94
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.1.0
ARG envcat_sha256=a3352b8b9dd9d8f362ed6a5c2c67af50e7a5c3a3286800585cc3a5facd7c97f5
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