Skip to content

remove the old hex selection #1516

remove the old hex selection

remove the old hex selection #1516

Workflow file for this run

name: Build
on: [push, workflow_dispatch]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out the repo
uses: actions/checkout@v4
- name: Set up PATH
run: echo $ANDROID_HOME/build-tools/34.0.0 >> $GITHUB_PATH
- name: Set up JDK
uses: actions/setup-java@v4
with:
distribution: temurin
java-version: 17
- name: Change permissions
run: chmod +x build.sh dependencies.sh
- name: Download dependencies
run: ./dependencies.sh dependencies-only
- name: Build the project
run: ./build.sh mobile
- name: Upload built jar file
uses: actions/upload-artifact@v4
with:
name: Schema
path: build/Schema.jar