agb/.github/scripts/publish-crate.sh

13 lines
284 B
Bash
Raw Normal View History

2022-01-13 09:46:48 +11:00
#!/usr/bin/env bash
set -e # Fail if any command fails
PROJECTS_TO_RELEASE_IN_ORDER="agb-macros agb-fixnum agb-image-converter agb-sound-converter agb"
2022-01-13 09:46:48 +11:00
for PROJECT in $PROJECTS_TO_RELEASE_IN_ORDER; do
pushd "$PROJECT"
echo "Publishing $PROJECT"
cargo publish
popd
done