Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: fix working directory for deploy workflows #412

Merged
merged 1 commit into from
May 12, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading