Skip to content

Commit

Permalink
dsym not dysm
Browse files Browse the repository at this point in the history
  • Loading branch information
roryabraham committed Oct 3, 2024
1 parent d0126f4 commit 1a100d1
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/buildIOS.yml
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ jobs:
env:
LARGE_SECRET_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }}

- name: Build iOS release app
- name: Build iOS ${{ inputs.type }} app
id: build
run: |
lane=''
Expand All @@ -132,8 +132,8 @@ jobs:
# ipaPath and dsymPath are environment variables set within the Fastfile
echo "IPA_PATH=$ipaPath"
echo "IPA_FILE_NAME=$(basename "$ipaPath")"
echo "DYSM_PATH=$dysmPath"
echo "DSYM_FILE_NAME=$(basename "$dysmPath")"
echo "DSYM_PATH=$dsymPath"
echo "DSYM_FILE_NAME=$(basename "$dsymPath")"
} >> "$GITHUB_OUTPUT"
- name: Upload iOS build artifact
Expand All @@ -146,7 +146,7 @@ jobs:
uses: actions/upload-artifact@v4
with:
name: ios-artifact-dsym
path: ${{ steps.build.outputs.DYSM_PATH }}
path: ${{ steps.build.outputs.DSYM_PATH }}

- name: Announce failure in slack
if: failure()
Expand Down

0 comments on commit 1a100d1

Please sign in to comment.