Skip to content

Commit

Permalink
Push both builds
Browse files Browse the repository at this point in the history
  • Loading branch information
fabio-insolia-cko committed Nov 27, 2023
1 parent 4b18ff6 commit 7bd2177
Show file tree
Hide file tree
Showing 3 changed files with 12 additions and 2 deletions.
12 changes: 11 additions & 1 deletion .github/workflows/push-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,12 +36,22 @@ jobs:
~/.gradle/caches
~/.gradle/wrapper
key: ${{ runner.os }}-gradle-${{ hashFiles('**/*.gradle*') }}
- name: Assembling ${{ inputs.module }} with Gradle
- name: Assemble Debug ${{ inputs.module }} with Gradle
run: ./gradlew :${{ inputs.module }}:assembleDebug

- name: Assemble Release ${{ inputs.module }} with Gradle
run: ./gradlew :${{ inputs.module }}:assembleRelease
# Upload Artifact Build
# Noted For Output [main_project_module]/build/outputs/apk/debug/
- name: Upload APK Debug - ${{ env.repository_name }}
uses: actions/upload-artifact@v3
with:
name: ${{ env.date_today }} - ${{ env.repository_name }} - APK(s) debug generated
path: ${{ inputs.module }}/build/outputs/apk/debug/
# Upload Artifact Build
# Noted For Output [main_project_module]/build/outputs/apk/debug/
- name: Upload APK Release - ${{ env.repository_name }}
uses: actions/upload-artifact@v3
with:
name: ${{ env.date_today }} - ${{ env.repository_name }} - APK(s) release generated
path: ${{ inputs.module }}/build/outputs/apk/release/
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,6 @@ protected void onCreate(@Nullable Bundle savedInstanceState) {
});
}


private void initItemUI(String name, long price, @DrawableRes int imageResource, Button cvvToknizationButton) {
TextView itemName = findViewById(R.id.text_item_name);
ImageView itemImage = findViewById(R.id.image_item_image);
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,6 +20,7 @@ internal class CheckoutApiClient(
logger.log(LoggingEvent(ApiClientEventType.INITIALIZE))
}


override fun createToken(request: CardTokenRequest) = tokenRepository.sendCardTokenRequest(request)

override fun createToken(request: GooglePayTokenRequest) = tokenRepository.sendGooglePayTokenRequest(request)
Expand Down

0 comments on commit 7bd2177

Please sign in to comment.