Disable ChatFormatter #7
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 ArchiveSuite | |
on: [push, pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Set up JDK 8 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 8 | |
distribution: 'adopt' | |
- name: Check out NabConfiguration | |
uses: actions/checkout@v2 | |
with: | |
repository: froobynooby/nab-configuration | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Install NabConfiguration | |
run: ./gradlew install | |
- name: Set up JDK 17 | |
uses: actions/setup-java@v2 | |
with: | |
java-version: 17 | |
distribution: 'adopt' | |
- name: Check out ArchiveSuite | |
uses: actions/checkout@v2 | |
- name: Validate Gradle Wrapper | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Build ArchiveSuite | |
run: ./gradlew shadowJar | |
- name: Archive ArchiveSuite | |
uses: actions/upload-artifact@v2 | |
with: | |
path: build/libs/*.jar | |
name: ArchiveSuite |