Add HapticGenerator API #2
Workflow file for this run
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: Compile and Upload | |
on: | |
push: | |
workflow_dispatch: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout the code | |
uses: actions/checkout@v3 | |
- name: Build the app | |
run: | | |
chmod +x gradlew | |
./gradlew build | |
- name: Upload Release | |
uses: softprops/[email protected] | |
with: | |
files: app/build/outputs/apk/release/*.apk |