mirror of
https://github.com/android-actions/setup-android
synced 2024-11-22 13:29:35 -08:00
templating in uses does not work
This commit is contained in:
parent
ca48f596fe
commit
6cd34504b7
1 changed files with 6 additions and 1 deletions
7
.github/workflows/run-test.yml
vendored
7
.github/workflows/run-test.yml
vendored
|
@ -25,13 +25,18 @@ jobs:
|
|||
with:
|
||||
repository: daveol/SampleApplication
|
||||
|
||||
- uses: actions/checkout@v2
|
||||
with:
|
||||
path: ../setup-android
|
||||
|
||||
- name: Set up JDK 1.8
|
||||
uses: actions/setup-java@v1
|
||||
with:
|
||||
java-version: 1.8
|
||||
|
||||
- name: Setup Android SDK
|
||||
uses: ${{ github.repository }}@${{ github.ref }}
|
||||
id: 'setup-android'
|
||||
uses: ../setup-android
|
||||
|
||||
- name: Build SampleApplication
|
||||
if: runner.os != 'windows'
|
||||
|
|
Loading…
Reference in a new issue