Skip to content

Commit

Permalink
Update workflow file for android
Browse files Browse the repository at this point in the history
  • Loading branch information
DDavidPrime committed Sep 24, 2024
1 parent 779394f commit 5dfc399
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/fastlane_build_and_deploy_android_app.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -66,17 +66,17 @@ jobs:
run: |
bundle exec fastlane build_custom platform:android environment:${{ inputs.flavor }} build_name:${{ inputs.build_name }} build_number:${{ inputs.build_number }}
- name: Prepare config
run: mv "${{ inputs.project_path }}/devops/artifacts/deployment.yaml" "${{ inputs.project_path }}/devops/artifacts/android-deployment.yaml"
run: mv "devops/artifacts/deployment.yaml" "devops/artifacts/android-deployment.yaml"
- name: Upload artifact - .aab
uses: actions/upload-artifact@v4
with:
name: app-${{ inputs.flavor }}-release.aab
path: "${{ inputs.project_path }}/devops/artifacts/app-${{ inputs.flavor }}-release.aab"
path: "devops/artifacts/app-${{ inputs.flavor }}-release.aab"
- name: Upload artifact - deployment config
uses: actions/upload-artifact@v4
with:
name: android-deployment.yaml
path: "${{ inputs.project_path }}/devops/artifacts/android-deployment.yaml"
path: "devops/artifacts/android-deployment.yaml"

deploy_to_google_play:
if: ${{ inputs.publish_to_store }}
Expand Down

0 comments on commit 5dfc399

Please sign in to comment.