Skip to content

Commit

Permalink
Use the new IOS_DSYM_BUCKET_PREFIX in the release workflow (#3798)
Browse files Browse the repository at this point in the history
Task/Issue URL: https://app.asana.com/0/72649045549333/1209141686015365/f
Tech Design URL:
CC:

Description:

This PR updates workflows to replace usage of DSYM_BUCKET_PREFIX with IOS_DSYM_BUCKET_PREFIX. This new secret has already been added to the repo, using the value mentioned in this doc.
  • Loading branch information
samsymons authored Jan 14, 2025
1 parent 0ea8a3d commit f0f23ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -113,7 +113,7 @@ jobs:
AWS_ACCESS_KEY_ID: ${{ secrets.AWS_ACCESS_KEY_ID }}
AWS_SECRET_ACCESS_KEY: ${{ secrets.AWS_SECRET_ACCESS_KEY }}
AWS_DEFAULT_REGION: ${{ vars.AWS_DEFAULT_REGION }}
DSYM_S3_PATH: s3://${{ secrets.DSYM_BUCKET_NAME }}/${{ secrets.DSYM_BUCKET_PREFIX }}/
DSYM_S3_PATH: s3://${{ secrets.DSYM_BUCKET_NAME }}/${{ secrets.IOS_DSYM_BUCKET_PREFIX }}/
run: |
if [[ -f ${{ env.dsyms_path }} ]]; then
aws s3 cp "${{ env.dsyms_path }}" ${{ env.DSYM_S3_PATH }}
Expand Down

0 comments on commit f0f23ad

Please sign in to comment.