passepartout-apple/scripts/ci/release-notes.sh
Davide De Rosa 9962401d74 Fix some issues in scripts
- Always use bash for consistent script behavior

- Replace deprecated set-output in GitHub workflows
2022-10-17 13:39:54 +02:00

14 lines
260 B
Bash
Executable File

#!/bin/bash
VERSION=$1
if [[ -z $VERSION ]]; then
echo "Must provide version"
exit 1
fi
APP_ROOT="Passepartout/App"
echo "# App Store"
echo
grep $VERSION CHANGELOG.md | cut -f 2- -d " "
echo
cat $APP_ROOT/fastlane/ios/metadata/en-US/release_notes.txt