mirror of
https://github.com/nmattia/niv.git
synced 2024-11-29 09:42:35 +03:00
89ae775e9d
This should hopefully clarify that `--version` shouldn't be used for GitHub repositories; moreover setting a particular revision is used much more often than changing the repo name.
20 lines
452 B
Bash
Executable File
20 lines
452 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
|
|
# * 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) "$@"
|