mirror of
https://github.com/bisq-network/bisq.git
synced 2025-02-22 06:41:41 +01:00
Add rpm support
This commit is contained in:
parent
d31173bc4f
commit
985ffeb879
1 changed files with 6 additions and 0 deletions
|
@ -37,6 +37,10 @@ deb="Bisq-$version.deb"
|
|||
deb64="Bisq-64bit-$version.deb"
|
||||
cp "$linux64/$deb" "$target_dir/$deb64"
|
||||
|
||||
rpm="Bisq-$version.rpm"
|
||||
rpm64="Bisq-64bit-$version.rpm"
|
||||
cp "$linux64/$rpm" "$target_dir/$rpm64"
|
||||
|
||||
exe="Bisq-$version.exe"
|
||||
exe64="Bisq-64bit-$version.exe"
|
||||
cp "$win64/$exe" "$target_dir/$exe64"
|
||||
|
@ -46,11 +50,13 @@ cd "$target_dir"
|
|||
echo Create signatures
|
||||
gpg --digest-algo SHA256 --local-user $BISQ_GPG_USER --output $dmg.asc --detach-sig --armor $dmg
|
||||
gpg --digest-algo SHA256 --local-user $BISQ_GPG_USER --output $deb64.asc --detach-sig --armor $deb64
|
||||
gpg --digest-algo SHA256 --local-user $BISQ_GPG_USER --output $rpm64.asc --detach-sig --armor $rpm64
|
||||
gpg --digest-algo SHA256 --local-user $BISQ_GPG_USER --output $exe64.asc --detach-sig --armor $exe64
|
||||
|
||||
echo Verify signatures
|
||||
gpg --digest-algo SHA256 --verify $dmg{.asc*,}
|
||||
gpg --digest-algo SHA256 --verify $deb64{.asc*,}
|
||||
gpg --digest-algo SHA256 --verify $rpm64{.asc*,}
|
||||
gpg --digest-algo SHA256 --verify $exe64{.asc*,}
|
||||
|
||||
cp -r . $win64/$version
|
||||
|
|
Loading…
Add table
Reference in a new issue