Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Velocity Support, Updates & Improvements #17

Draft
wants to merge 2 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 6 additions & 1 deletion .github/workflows/gradle-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,18 @@ jobs:
run: chmod +x gradlew
# Clean, Test, Publish and Build (in that order to save the artifact to the action)
- name: Test, Deploy and Build with Gradle
run: ./gradlew clean test publish shadow dokkaHtml
run: ./gradlew clean test publish shadow dokkaHtml --no-daemon
# Now we store the artifact in the action
- name: Upload the artifact
uses: actions/upload-artifact@v3
with:
name: CommandsModule
path: ./build/libs/CommandsModule-${{ env.VERSION }}.jar
# Here we upload the binary to the release
- name: Upload to release
uses: JasonEtco/upload-to-release@master
with:
args: ./build/libs/CommandsModule-${{ env.VERSION }}.jar application/java-archive
# Now we deploy the documents to GitHub pages
- name: Deploy Dokka
uses: JamesIves/[email protected]
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/gradle-test.yml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
name: "Test"
# Only execute this workflow when a PR is opened or when something is pushed to the master branch
on: [push, pull_request]
on: [pull_request]
jobs:
testBuilds:
strategy:
Expand Down Expand Up @@ -28,4 +28,4 @@ jobs:
run: chmod +x gradlew
# Test building without dokka
- name: Build Jar with Java ${{ matrix.java-version }}
run: ./gradlew clean publish shadow -x dokkaHtml
run: ./gradlew clean publish shadow -x dokkaHtml --no-daemon
5 changes: 4 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,9 @@
[![](https://jitci.com/gh/TheProgramSrc/SimpleCore-CommandsModule/svg)](https://jitci.com/gh/TheProgramSrc/SimpleCore-CommandsModule)
[![](https://jitpack.io/v/TheProgramSrc/SimpleCore-CommandsModule.svg)](https://jitpack.io/#TheProgramSrc/SimpleCore-CommandsModule)

# SimpleCore-CommandsModule
Command Builder module for SimpleCore API.

# Documentation
* [Wiki](https://github.com/TheProgramSrc/SimpleCore-CommandsModule/wiki)
* [JavaDocs](https://theprogramsrc.github.io/SimpleCore-CommandsModule/)
* [JavaDocs](https://docs.theprogramsrc.xyz/SimpleCore-CommandsModule/)