-
Notifications
You must be signed in to change notification settings - Fork 1
/
run-release.sh
executable file
·32 lines (25 loc) · 1.02 KB
/
run-release.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#!/usr/bin/env bash
set -euo pipefail
# if [[ -z "${PROVIDER_WALLET}" ]]; then
# echo "Please provide path to a provider wallet keypair."
# exit -1
# fi
# if [[ -z "${VERSION_MANUALLY_BUMPED}" ]]; then
# echo "Please bump versions in package.json and in cargo.toml."
# exit -1
# fi
# build program
anchor build
# update on chain program and IDL, atm used for testing/developing
# anchor deploy --provider.cluster devnet --provider.wallet ${PROVIDER_WALLET}
# anchor idl upgrade --provider.cluster devnet --provider.wallet ${PROVIDER_WALLET}\
# --filepath target/idl/nft_voter.json GnftV5kLjd67tvHpNGyodwWveEKivz3ZWvvE3Z4xi2iw
# update types in npm package and publish the npm package
cp ./target/types/nft_voter.ts src/nftVoter/nft_voter.ts
cp ./target/types/gateway.ts src/gateway/gateway.ts
cp ./target/types/realm_voter.ts src/realmVoter/realm_voter.ts
yarn clean && yarn build && yarn publish
echo
echo Remember to commit and push the version update as well as the changes
echo to src/nft_voter.ts and/or rc/realm_voter.ts
echo