fix(release): move asset paths after ASSET_PATH definition

This commit is contained in:
2026-07-17 09:55:11 -04:00
parent ba8f828e89
commit 06db6f1d48

View File

@@ -37,9 +37,6 @@ for cmd in gpg sha256sum jq; do
fi
done
SIGNER_KEY="svatantrya@bitcoin-after.life"
ASSET_SHA256="$ASSET_PATH.sha256"
ASSET_SIG="$ASSET_PATH.sig"
OWNER="bitcoinafterlife"
basename=$(basename $(pwd))
REPO=$basename
@@ -56,6 +53,10 @@ assetname="$release_name""_$arch""_$platform"
asset_tar_gz="$assetname.tar.gz"
ASSET_PATH="$destbin/$assetname.tar.gz"
SIGNER_KEY="svatantrya@bitcoin-after.life"
ASSET_SHA256="$ASSET_PATH.sha256"
ASSET_SIG="$ASSET_PATH.sig"
giteahost="https://bitcoin-after.life/gitea"
url_releases="$giteahost/api/v1/repos/$OWNER/$REPO/releases"