Remove unsupported functions #43
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build artifacts | |
on: | |
push: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
- '.idea/*' | |
- 'LICENSE' | |
pull_request: | |
branches: | |
- '*' | |
paths-ignore: | |
- '**.md' | |
- '.idea/*' | |
- 'LICENSE' | |
workflow_dispatch: | |
jobs: | |
build: | |
timeout-minutes: 60 | |
runs-on: macos-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Setup JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
cache: 'gradle' | |
- name: Setup Android SDK | |
uses: android-actions/[email protected] | |
- name: Setup Gradle | |
uses: gradle/[email protected] | |
- name: Build artifacts | |
run: | | |
chmod +x gradlew | |
./gradlew publishToMavenLocal --no-daemon --stacktrace | |
- name: Upload artifacts | |
uses: actions/upload-artifact@v3 | |
with: | |
name: artifacts | |
path: ~/.m2/repository/ |