Skip to content

Commit

Permalink
ci: fix working directory for deploy workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
riscait committed May 12, 2024
1 parent 84550e2 commit 050d322
Show file tree
Hide file tree
Showing 4 changed files with 6 additions and 3 deletions.
3 changes: 3 additions & 0 deletions .cspell/flutter-words.txt
Original file line number Diff line number Diff line change
Expand Up @@ -39,5 +39,8 @@ unfocus
utsname
vsync
wireframe
xcarchive
xcconfig
xcodebuild
xcrun
xcworkspace
2 changes: 1 addition & 1 deletion .github/actions/deploy_ios_app/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -97,4 +97,4 @@ runs:
run: >
rm ./private_keys/AuthKey_${{ inputs.asc-key-id }}.p8
shell: bash
working-directory: ${{ inputs.working-directory }}
working-directory: ${{ inputs.working-directory }}
2 changes: 1 addition & 1 deletion .github/workflows/deploy-ios-production-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Deploy iOS app
uses: ./.github/actions/deploy_ios_app
with:
working-directory: ./packages/flutter_app_template
working-directory: ./packages/flutter_app
flavor: prod
asc-key-id: ${{ env.ASC_KEY_ID }}
asc-issuer-id: ${{ env.ASC_ISSUER_ID }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/deploy-ios-staging-app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Deploy iOS app
uses: ./.github/actions/deploy_ios_app
with:
working-directory: ./packages/flutter_app_template
working-directory: ./packages/flutter_app
flavor: stg
asc-key-id: ${{ env.ASC_KEY_ID }}
asc-issuer-id: ${{ env.ASC_ISSUER_ID }}
Expand Down

0 comments on commit 050d322

Please sign in to comment.