Skip to content

Commit

Permalink
fix paths again
Browse files Browse the repository at this point in the history
  • Loading branch information
brunobar79 committed Aug 29, 2024
1 parent 19d44ec commit 950f13d
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/macstadium-builds.yml
Original file line number Diff line number Diff line change
Expand Up @@ -81,12 +81,12 @@ jobs:
BRANCH_NAME: ${{ github.head_ref || github.ref_name }}
COMMIT_HASH: ${{ github.sha }}
run: |
APP_DIR=$(find . -name "*.app" | head -n 1)
cd $APP_DIR && zip -r ../App.zip . && cd ..
aws s3 cp "App.zip" "s3://${AWS_BUCKET}/${BRANCH_NAME}/${COMMIT_HASH}.app.zip"
IPA_PATH=$(find . -name "*.ipa" | head -n 1)
aws s3 cp "${IPA_PATH}" "s3://${AWS_BUCKET}/${BRANCH_NAME}/${COMMIT_HASH}.ipa"
IPA_PATH=./ios/build/Rainbow.ipa
aws s3 cp "${IPA_PATH}" "s3://${AWS_BUCKET}/${BRANCH_NAME}/${COMMIT_HASH}.ipa"
APP_DIR=$(find . -name "*.app" | head -n 1)
cd $APP_DIR && zip -r ../App.zip . && cd ..
aws s3 cp "App.zip" "s3://${AWS_BUCKET}/${BRANCH_NAME}/${COMMIT_HASH}.app.zip"
- name: Post comment to PR
if: github.event_name == 'pull_request'
Expand Down

0 comments on commit 950f13d

Please sign in to comment.