From a7f84465b6fea9d8dd71bf1abdbea8f8d499a133 Mon Sep 17 00:00:00 2001 From: Phillip Thelen Date: Tue, 14 Sep 2021 13:14:05 +0200 Subject: [PATCH] add step to rename example config files --- .github/workflows/android.yml | 21 ++++++++++++++++++++- 1 file changed, 20 insertions(+), 1 deletion(-) diff --git a/.github/workflows/android.yml b/.github/workflows/android.yml index ad51fc1cb..75864c179 100644 --- a/.github/workflows/android.yml +++ b/.github/workflows/android.yml @@ -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