mirror of
https://github.com/nmattia/niv.git
synced 2024-11-08 08:26:02 +03:00
21 lines
482 B
Bash
Executable File
21 lines
482 B
Bash
Executable File
#!/usr/bin/env nix-shell
|
|
#!nix-shell -I nixpkgs=./nix
|
|
#!nix-shell -i bash -p cabal-install -p nix -p curl
|
|
# vim: filetype=sh
|
|
#
|
|
#
|
|
# How To Release:
|
|
# * git checkout master
|
|
# * make sure changelog is up-to-date
|
|
# * bump version in package.yaml
|
|
# * bump version in CHANGELOG
|
|
# * run ./script/gen (twice...)
|
|
# * run ./script/test
|
|
# * git ci -am "Release 3.14.15"
|
|
# * ./script/upload --publish
|
|
# * git tag v3.14.15
|
|
# * git push
|
|
# * git push --tags
|
|
|
|
$(nix-build -A niv-cabal-upload) "$@"
|