Files
i2p.plugins.firefox/release.sh
idk 7a2b138506 relase
Former-commit-id: 3b204871bf
Former-commit-id: b554942db309018f7ed5fcede1bc06a595743014
2022-08-20 20:23:27 -04:00

29 lines
827 B
Bash
Executable File

#! /usr/bin/env sh
GITHUB_USER=eyedeekay
GITHUB_REPO=i2p.plugins.firefox
GITHUB_NAME="Which fixes some Chromium issues identified by xip"
GITHUB_DESCRIPTION=$(cat CHANGES.md)
GITHUB_TAG=0.0.9
ant distclean
ant jar freeZip
github-release release --user "${GITHUB_USER}" \
--repo "${GITHUB_REPO}" \
--name "${GITHUB_NAME}" \
--description "${GITHUB_DESCRIPTION}" \
--tag "${GITHUB_TAG}"; true
sleep 2s
github-release upload --user "${GITHUB_USER}" \
--repo "${GITHUB_REPO}" \
--tag "${GITHUB_TAG}" \
--name "i2pfirefox.jar" \
--file "src/build/i2pfirefox.jar" \
--replace
github-release upload --user "${GITHUB_USER}" \
--repo "${GITHUB_REPO}" \
--tag "${GITHUB_TAG}" \
--name "i2pfirefox.zip" \
--file "i2pfirefox.zip" \
--replace
git pull github --tags
git push --all