This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# This will print SHA to closest develop as a parent | |
echo $(git log --decorate | grep 'commit' | grep 'origin/develop' | head -n 1 | awk '{ print $2 }' | tr -d "\n") |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
save_derived_data: | |
steps: | |
# This will create file with current commit SHA from develop branch | |
# We need to store it to file just to be able to use it as a key inside `save_cache` command. | |
# Because it is not possible to directly embed it inside {{ }} | |
- run: | |
name: Add current develop commit SHA environment variable | |
command: | | |
echo $(git show --format="%H" --no-patch) > /tmp/current_dev_commit_sha |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
restore_derived_data_from_develop: | |
steps: | |
# We need to perform git fetch in order to find nearest develop SHA | |
- run: | |
name: Git Fetch | |
command: git fetch --no-tags | |
# This will create file with nearest develop commit SHA usually this will be point from where we stared this cranch | |
# We need to store it to file just to be able to use it as a key inside `restore_cache` command. | |
# Because it is not possible to directly embed it inside {{ }} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#Set here your Environment.plist name | |
ENVIRONMENT="DEV" | |
#Environment.plist path | |
ENVIRONMENT_PLIST="$PROJECT_DIR/AppName/Environments.plist" | |
#Get app name from Environment.plist | |
APP_NAME=$(/usr/libexec/PlistBuddy -c "Print :$ENVIRONMENT:APP_NAME" "$ENVIRONMENT_PLIST") | |
#Get bundle identifier from Environment.plist | |
BUNDLE_ID=$(/usr/libexec/PlistBuddy -c "Print :$ENVIRONMENT:BUNDLE_IDENTIFIER" "$ENVIRONMENT_PLIST") |
OlderNewer