innisfree 0.3.0

Exposes local services on public IPv4 address, via cloud server.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#!/bin/bash
set -euo pipefail


# Perform release
cargo release --execute --sign $@

# After successful release, check out release tag and build deb.
git checkout "$(git tag | sort -V | tail -n1)"
cargo deb
# Prepare changelog
sed -n "$(grep -P '^##' -m2  CHANGELOG.md | xargs -d '\n' printf '/%s/,/%s/p')" CHANGELOG.md  | head -n -2
echo "Deb ready at:"
find target/debian/ -type f