Skip to content

Commit 0992cc0

Browse files
committed
fix: typo
1 parent 660dfd0 commit 0992cc0

File tree

3 files changed

+28
-3
lines changed

3 files changed

+28
-3
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
FROM code0987/android-ci:latest
22

33
LABEL "com.github.actions.name"="Android CI Github Action"
4-
LABEL "com.github.actions.description"="An github action of image for building Android apps with support for multiple SDK Build Tools. This Docker image contains the Android SDK and most common packages necessary for building Android apps in a CI tool."
4+
LABEL "com.github.actions.description"="A Github action of image for building Android apps with support for multiple SDK Build Tools. This Docker image contains the Android SDK and most common packages necessary for building Android apps in a CI tool."
55
LABEL "com.github.actions.icon"="box"
66
LABEL "com.github.actions.color"="green"
77

README.md

Lines changed: 26 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,4 +2,29 @@
22

33
An github action of image for building Android apps with support for multiple SDK Build Tools. This Docker image contains the Android SDK and most common packages necessary for building Android apps in a CI tool.
44

5-
Based on [javiersantos/android-ci](https://github.com/javiersantos/android-ci).
5+
More details [code0987/android-ci](https://github.com/code09887/android-ci).
6+
7+
### Usage and example
8+
9+
```yml
10+
name: Android CI
11+
12+
on: [push]
13+
14+
jobs:
15+
16+
android-ci:
17+
runs-on: ubuntu-latest
18+
19+
steps:
20+
- uses: actions/checkout@v1
21+
22+
- name: "Android CI Github Action"
23+
uses: code0987/android-ci-github-action@master
24+
with:
25+
args: |
26+
npm install
27+
export GRADLE_USER_HOME=`pwd`./src/.gradle
28+
chmod 755 ./src/gradlew
29+
./src/gradlew -p ./src check
30+
```

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
name: 'android-ci-github-action'
2-
description: 'A github action for image for building Android apps with support for multiple SDK Build Tools.'
2+
description: 'A Github action for image for building Android apps with support for multiple SDK Build Tools.'
33
author: 'code0987 <[email protected]>'
44
branding:
55
icon: 'box'

0 commit comments

Comments
 (0)