mirror of
https://github.com/sudoxnym/habitica-android.git
synced 2026-04-14 11:46: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
|
||||
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
|
||||
run: ./gradlew build
|
||||
lint:
|
||||
|
|
@ -34,7 +44,16 @@ jobs:
|
|||
java-version: '11'
|
||||
distribution: 'adopt'
|
||||
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
|
||||
run: chmod +x gradlew
|
||||
- name: Build with Gradle
|
||||
|
|
|
|||
Loading…
Reference in a new issue