Windows releaser too.

Former-commit-id: 8e70d9280c
Former-commit-id: 97954c403b59723eac7e62580d99d3e079a6e481
This commit is contained in:
idk
2022-09-05 21:52:18 -04:00
parent ba6104df32
commit 3d3eec3de9
3 changed files with 16 additions and 1 deletions

View File

@ -4,7 +4,7 @@ Mon, September 5
- Fix several issues with running on Windows 11
- Make tunnel nicknames different to avoid double shared tunnels
- Add support for building a Debian package.
- Start support for building an MSI package.
- Add support for building an MSI package.
Fri, September 2
----------------

0
config.sh Normal file → Executable file
View File

15
windows-release.sh Executable file
View File

@ -0,0 +1,15 @@
#! /usr/bin/env sh
git pull --all
. ../i2p.firefox/config.sh
. ./config.sh
. "${HOME}/github-release-config.sh"
ant distclean jar jpackage
./windows.sh
github-release upload --user "${GITHUB_USER}" \
--repo "${GITHUB_REPO}" \
--tag "${GITHUB_TAG}" \
--label "I2P Browser launcher as a Jpackage inside of an MSI package." \
--name "i2pbrowser_${GITHUB_TAG}.msi" \
--file "i2pbrowser_${GITHUB_TAG}.msi" \
--replace
echo "Uploaded Windows MSI package"