Update .gitea/workflows/buildAndroid.yaml
Some checks failed
Build Android / build (push) Failing after 5s

This commit is contained in:
2023-06-29 08:37:06 +02:00
parent 37f6e919f1
commit aee9a2690c

View File

@@ -3,8 +3,6 @@ on: [pull_request, push]
jobs: jobs:
build: build:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container:
image: docker://fabernovel/android:api-33-v1.7.0
steps: steps:
- name: Checkout the code - name: Checkout the code
uses: actions/checkout@v2 uses: actions/checkout@v2
@@ -33,5 +31,7 @@ jobs:
let timestamp=$(date +%s)/10 let timestamp=$(date +%s)/10
echo "versionCode=$timestamp" >> version.properties echo "versionCode=$timestamp" >> version.properties
- name: Build the app - name: "Build Android project"
run: ./gradlew build uses: vgaidarji/android-github-actions-build@v1.0.1
with:
args: "./gradlew build"