ci: Don't try to build the removed plexmap module #201
Workflow file for this run
This file contains 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: Build | |
on: | |
push: | |
pull_request: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
project: [ 'admin', 'bedtime', 'core', 'enchantments', 'permissions', 'portals', 'regions', 'trifles', 'waterfall', 'velocity' ] | |
steps: | |
- uses: actions/checkout@v3.0.0 | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v3.0.0 | |
with: | |
java-version: 17 | |
distribution: 'temurin' | |
- name: Gradle build | |
run: | | |
cd vane-${{ matrix.project }} | |
gradle build | |
# Get the Git hash | |
git_hash=$(git rev-parse --short "$GITHUB_SHA") | |
echo "git_hash=$git_hash" >> $GITHUB_ENV | |
- name: Upload JAR | |
if: ${{ github.event_name == 'push' }} | |
uses: actions/upload-artifact@v3 | |
with: | |
name: vane-${{ matrix.project }}-${{ env.git_hash }}.jar | |
path: target/vane-${{ matrix.project }}-*.jar |