Skip to content

Commit

Permalink
create upload script
Browse files Browse the repository at this point in the history
  • Loading branch information
teras committed May 31, 2020
1 parent 4a500fc commit 4ef82d0
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,3 +7,4 @@ target/
.idea/
modules/installer/secret/code-signing.p12
modules/installer/secret/apple-keysign.p12
upload
21 changes: 21 additions & 0 deletions upload.sh
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
#!/bin/bash

set -e

cd "`dirname \"$0\"`"

mkdir upload

mvn clean install -Pdist-osx,notarize
cp modules/installer/target/Jubler-*.dmg upload/

mvn clean install -Pdist-generic
cp modules/installer/target/Jubler-*tar.bz2 upload/

mvn clean install -Pdist-linux
cp modules/installer/target/Jubler-*.appimage upload/

mvn clean install -Pdist-windows
cp modules/installer/target/Jubler-*.exe upload/


0 comments on commit 4ef82d0

Please sign in to comment.