Skip to content

docs: fix typos

docs: fix typos #11

Workflow file for this run

name: Maven Package
on:
pull_request:
push:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
packages: write
steps:
- uses: actions/checkout@v3
- name: Set up JDK 8
uses: actions/setup-java@v3
with:
java-version: '8'
distribution: 'zulu'
- name: Build with Maven
run: mvn package -B -ntp -DskipTests=true -f pom.xml
- name: Prepare artifact
run: |
mkdir bin
cp -r ./target ./bin
- name: Upload java release
uses: actions/upload-artifact@v2
with:
name: Jation.zip
path: ./bin