mirror of
https://github.com/passepartoutvpn/passepartout-apple.git
synced 2025-01-13 12:09:10 +00:00
9962401d74
- Always use bash for consistent script behavior - Replace deprecated set-output in GitHub workflows
14 lines
260 B
Bash
Executable File
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
|