diff --git a/.gitea/workflows/buildAndroid.yaml b/.gitea/workflows/buildAndroid.yaml index 5b46fb5..9622d95 100644 --- a/.gitea/workflows/buildAndroid.yaml +++ b/.gitea/workflows/buildAndroid.yaml @@ -3,8 +3,6 @@ on: [pull_request, push] jobs: build: runs-on: ubuntu-latest - container: - image: docker://fabernovel/android:api-33-v1.7.0 steps: - name: Checkout the code uses: actions/checkout@v2 @@ -33,5 +31,7 @@ jobs: let timestamp=$(date +%s)/10 echo "versionCode=$timestamp" >> version.properties - - name: Build the app - run: ./gradlew build \ No newline at end of file + - name: "Build Android project" + uses: vgaidarji/android-github-actions-build@v1.0.1 + with: + args: "./gradlew build" \ No newline at end of file