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

Move bump build to bump version workflow #109

Merged
merged 2 commits into from
Oct 22, 2022
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
5 changes: 5 additions & 0 deletions .github/workflows/bump-version-based-on-labels.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,7 @@ on:
- dev
types:
- labeled
- opened

jobs:
bump_version_based_on_labels:
Expand All @@ -25,4 +26,8 @@ jobs:
bundler-cache: true
working-directory: android
- run: bundle exec fastlane bump_version push:true branch:${{ github.head_ref }} ${{env.parts}} bump_build:false
if: ${{ (github.event.pull_request.labeled == true) }}
working-directory: android
- run: bundle exec fastlane bump_version push:true branch:${{ github.ref_name }}
working-directory: android
if: ${{ (github.event.pull_request.opened == true) }}
3 changes: 0 additions & 3 deletions .github/workflows/ci-staging.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -80,9 +80,6 @@ jobs:
KEYSTORE_KEY_PASSWORD: ${{ secrets.KEYSTORE_KEY_PASSWORD }}
KEYSTORE_STORE_PASSWORD: ${{ secrets.KEYSTORE_STORE_PASSWORD }}
working-directory: android

- run: bundle exec fastlane bump_version push:true branch:${{ github.ref_name }}
working-directory: android
- run: bundle exec fastlane android deploy track:${{env.track}}
working-directory: android
env:
Expand Down