hardcode enderchest clicktype and add task to fix MIDDLE click not wo… #167
Workflow file for this run
This file contains hidden or 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: Xodium CI/CD - Build Application | |
| on: | |
| push: | |
| branches: [ main, dev ] | |
| workflow_dispatch: | |
| concurrency: | |
| group: "${{ github.workflow }}-${{ github.ref }}" | |
| cancel-in-progress: true | |
| permissions: | |
| contents: read | |
| pull-requests: write | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - id: checkout | |
| name: Checkout | |
| uses: actions/[email protected] | |
| - id: setup-java | |
| name: Setup Java | |
| uses: actions/[email protected] | |
| with: | |
| java-version: 21 | |
| distribution: temurin | |
| - id: setup-gradle | |
| name: Setup Gradle | |
| uses: gradle/actions/[email protected] | |
| - id: build-gradle | |
| name: Build with Gradle | |
| run: ./gradlew shadowJar | |
| - id: upload-artifact | |
| name: Upload Build Artifact | |
| if: ${{ success() }} | |
| uses: actions/[email protected] | |
| with: | |
| path: build/libs/*.jar |