Skip to content

Search folder icon in icon packs (pull request) #205

Search folder icon in icon packs (pull request)

Search folder icon in icon packs (pull request) #205

Workflow file for this run

name: Build Project
on:
# Automatically run the workflow after a "git push"
push:
branches: [ main ]
# Allows to run the workflow manually from the Actions tab
workflow_dispatch:
jobs:
# Build the project with Gradle
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Set up JDK 11
uses: actions/setup-java@v2
with:
java-version: '11'
distribution: 'adopt'
- name: Setup Android SDK
uses: android-actions/setup-android@v2
- name: Build with Gradle
run: |
chmod +x gradlew
./gradlew build