Initial commit

This commit is contained in:
Kavin 2023-01-27 18:15:13 +00:00
commit 9d2953693b
No known key found for this signature in database
GPG key ID: 49451E4482CC5BCD
17 changed files with 1770 additions and 0 deletions

31
.github/workflows/build-maven.yml vendored Normal file
View file

@ -0,0 +1,31 @@
name: Build and Publish on Maven
on:
push:
paths-ignore:
- "**.md"
branches:
- main
permissions:
packages: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: Swatinem/rust-cache@v2
- run: cargo install cross
- name: set up JDK
uses: actions/setup-java@v3
with:
java-version: 17
distribution: temurin
check-latest: true
cache: "gradle"
- name: Run Build
run: ./gradlew publish
env:
USERNAME: ${{ github.actor }}
TOKEN: ${{ secrets.GITHUB_TOKEN }}