Skip to content

Commit

Permalink
Include build number in App Store dSYM file name
Browse files Browse the repository at this point in the history
  • Loading branch information
ayoy committed Dec 11, 2023
1 parent d714a45 commit dce702a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/build_appstore.yml
Original file line number Diff line number Diff line change
Expand Up @@ -100,9 +100,10 @@ jobs:
bundle exec fastlane release_${{ env.destination }}
dsyms_path="${{ github.workspace }}/DuckDuckGo-AppStore.app.dSYM.zip"
mv -f "${{ github.workspace }}/DuckDuckGo App Store.app.dSYM.zip" "${dsyms_path}"
app_version="$(cut -d ' ' -f 3 < Configuration/Version.xcconfig)"
version="$(cut -d ' ' -f 3 < Configuration/Version.xcconfig)"
build_number="$(cut -d ' ' -f 3 < Configuration/BuildNumber.xcconfig)"
echo "dsyms_path=${dsyms_path}" >> $GITHUB_ENV
echo "app_version=${app_version}" >> $GITHUB_ENV
echo "app_version=${version}.${build_number}" >> $GITHUB_ENV
- name: Upload dSYMs artifact
uses: actions/upload-artifact@v3
Expand Down

0 comments on commit dce702a

Please sign in to comment.