File tree 2 files changed +12
-1
lines changed
2 files changed +12
-1
lines changed Original file line number Diff line number Diff line change @@ -588,7 +588,7 @@ jobs:
588
588
- run :
589
589
name : Build development contracts
590
590
command : |
591
- docker run --volumes-from with_code cosmwasm/workspace-optimizer:0.12.4
591
+ docker run --volumes-from with_code cosmwasm/workspace-optimizer:0.12.6
592
592
docker cp with_code:/code/artifacts ./artifacts
593
593
- run :
594
594
name : Show data
Original file line number Diff line number Diff line change 2
2
set -o errexit -o nounset -o pipefail
3
3
command -v shellcheck > /dev/null && shellcheck " $0 "
4
4
5
+ function print_usage() {
6
+ echo " Usage: $0 [-h|--help]"
7
+ echo " Publishes crates to crates.io."
8
+ }
9
+
10
+ if [ $# = 1 ] && ( [ " $1 " = " -h" ] || [ " $1 " = " --help" ] )
11
+ then
12
+ print_usage
13
+ exit 1
14
+ fi
15
+
5
16
# These are imported by other packages - wait 30 seconds between each as they have linear dependencies
6
17
BASE_CRATES=" packages/bindings packages/bindings-test packages/tg4 packages/utils contracts/tg4-engagement contracts/tg4-stake contracts/tg4-mixer packages/tg3 packages/voting-contract"
7
18
You can’t perform that action at this time.
0 commit comments