Files
i2p.plugins.firefox/release.sh

29 lines
856 B
Bash
Raw Normal View History

2022-08-07 20:20:29 -04:00
#! /usr/bin/env sh
GITHUB_USER=eyedeekay
GITHUB_REPO=i2p.plugins.firefox
GITHUB_NAME="Which prioritizes Tor Browser if you have it installed and Firefox if you don't"
2022-08-07 22:46:38 -04:00
GITHUB_DESCRIPTION=$(cat CHANGES.md)
GITHUB_TAG=0.0.8
2022-08-07 20:20:29 -04:00
ant distclean
ant jar freeZip
2022-08-07 20:20:29 -04:00
github-release release --user "${GITHUB_USER}" \
--repo "${GITHUB_REPO}" \
--name "${GITHUB_NAME}" \
--description "${GITHUB_DESCRIPTION}" \
2022-08-19 18:30:14 -04:00
--tag "${GITHUB_TAG}"; true
2022-08-07 20:20:29 -04:00
sleep 2s
github-release upload --user "${GITHUB_USER}" \
--repo "${GITHUB_REPO}" \
--tag "${GITHUB_TAG}" \
--name "i2pfirefox.jar" \
--file "src/build/i2pfirefox.jar" \
2022-08-07 20:46:22 -04:00
--replace
2022-08-07 20:49:20 -04:00
github-release upload --user "${GITHUB_USER}" \
--repo "${GITHUB_REPO}" \
--tag "${GITHUB_TAG}" \
--name "i2pfirefox.zip" \
--file "i2pfirefox.zip" \
--replace
2022-08-07 22:57:40 -04:00
git pull github --tags
git push --all