Download a .deb
or .rpm
file from the releases page
and install with dpkg -i
and rpm -i
respectively.
On windows you can use scoop by first adding the repo and then installing.
scoop bucket add changie https://github.com/miniscruff/changie
scoop install changie
On macOS, you can use Homebrew to install by first tapping the repository.
brew tap miniscruff/changie https://github.com/miniscruff/changie
brew install changie
An AUR package is available.
trizen -S changie
This GitHub action can be used.
- name: Batch a new minor version
uses: miniscruff/changie-action@VERSION # view action repo for latest version
with:
version: latest # use the latest changie version
args: batch minor
Docker images are uploaded to GitHub Packages.
# Replace latest with any changie command
docker run \
--mount type=bind,source=$PWD,target=/src \
-w /src \
ghcr.io/miniscruff/changie \
latest
Notes
docker run \
--mount type=bind,source=$PWD,target=/src \
-w /src \
-it \
--user $(id -u ${USER}):$(id -g ${USER}) \
ghcr.io/miniscruff/changie \
new
Go install can be used to download changie from the main branch.
go install github.com/miniscruff/changie@latest