mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 19:56:32 +00:00
add step to rename example config files
This commit is contained in:
parent
389ff0a32e
commit
a7f84465b6
1 changed files with 20 additions and 1 deletions
21
.github/workflows/android.yml
vendored
21
.github/workflows/android.yml
vendored
|
|
@ -21,6 +21,16 @@ jobs:
|
||||||
|
|
||||||
- name: Grant execute permission for gradlew
|
- name: Grant execute permission for gradlew
|
||||||
run: chmod +x gradlew
|
run: chmod +x gradlew
|
||||||
|
- name: copy properties file
|
||||||
|
uses: canastro/copy-file-action@master
|
||||||
|
with:
|
||||||
|
source: "habitica.properties.example"
|
||||||
|
target: "habitica.properties"
|
||||||
|
- name: copy resources file
|
||||||
|
uses: canastro/copy-file-action@master
|
||||||
|
with:
|
||||||
|
source: "habitica.resources.example"
|
||||||
|
target: "habitica.resources"
|
||||||
- name: Build with Gradle
|
- name: Build with Gradle
|
||||||
run: ./gradlew build
|
run: ./gradlew build
|
||||||
lint:
|
lint:
|
||||||
|
|
@ -34,7 +44,16 @@ jobs:
|
||||||
java-version: '11'
|
java-version: '11'
|
||||||
distribution: 'adopt'
|
distribution: 'adopt'
|
||||||
cache: gradle
|
cache: gradle
|
||||||
|
- name: copy properties file
|
||||||
|
uses: canastro/copy-file-action@master
|
||||||
|
with:
|
||||||
|
source: "habitica.properties.example"
|
||||||
|
target: "habitica.properties"
|
||||||
|
- name: copy resources file
|
||||||
|
uses: canastro/copy-file-action@master
|
||||||
|
with:
|
||||||
|
source: "habitica.resources.example"
|
||||||
|
target: "habitica.resources"
|
||||||
- name: Grant execute permission for gradlew
|
- name: Grant execute permission for gradlew
|
||||||
run: chmod +x gradlew
|
run: chmod +x gradlew
|
||||||
- name: Build with Gradle
|
- name: Build with Gradle
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue