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

[Actions] android-sample - Bump actions/- [email protected], [email protected], [email protected] & [email protected] #4874

Closed
wants to merge 1 commit into from
Closed
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
11 changes: 6 additions & 5 deletions .github/workflows/android-sample.yml
Original file line number Diff line number Diff line change
@@ -1,20 +1,21 @@
name: Build Android Sample App

# This action runs on 'git push' and PRs
on: [push, pull_request]

jobs:
build:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2
- uses: actions/checkout@v3.5.3
- name: set up JDK
uses: actions/setup-java@v1
uses: actions/setup-java@v3.11.0
with:
distribution: 'temurin'
java-version: 17
- name: Compute build cache
run: ./scripts/checksum-android.sh checksum-android.txt
- uses: actions/cache@v2
- uses: actions/cache@v3.3.1
with:
path: |
~/.gradle/caches/modules-*
Expand All @@ -30,7 +31,7 @@ jobs:
- name: Build remaining artifacts with Gradle
run: ./gradlew assembleDebug
- name: upload artifact
uses: actions/upload-artifact@v1
uses: actions/upload-artifact@v3.1.2
with:
name: sample-app.apk
path: android/sample/build/outputs/apk/debug/sample-debug.apk