Skip to content

Commit

Permalink
Fixing sed for iOS
Browse files Browse the repository at this point in the history
  • Loading branch information
cody-constine-ttd committed Apr 22, 2024
1 parent 76d5757 commit 3a96ef6
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/shared-publish-to-ios-version.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ jobs:
run: |
current_version=$(grep -o '<string>.*</string>' ${{ inputs.working_dir }}/Sources/UID2/Properties/sdk_properties.plist | head -1 | sed 's/<string>\(.*\)<\/string>/\1/')
new_version=${{ steps.version.outputs.new_version }}
sed -i "s/$current_version/$new_version/g" ${{ inputs.working_dir }}/Sources/UID2/Properties/sdk_properties.plist
sed -i '' -e "s/$current_version/$new_version/g" ${{ inputs.working_dir }}/Sources/UID2/Properties/sdk_properties.plist
echo "Version number updated from $current_version to $new_version"
- name: Build, Test
Expand Down

0 comments on commit 3a96ef6

Please sign in to comment.