Fix Cleanroom Compat #187
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
# CI/CD: Build Labs on Commit | |
name: Build Nomi Labs | |
on: | |
push: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build Nomi Labs | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout Repository | |
uses: actions/checkout@v4 | |
with: | |
ref: ${{ inputs.tag }} | |
fetch-depth: 0 | |
- name: Setup Build | |
uses: ./.github/actions/build_setup | |
- name: Build Project | |
run: ./gradlew build | |
- name: Upload Artifacts | |
uses: actions/upload-artifact@v4 | |
with: | |
name: Built Jars | |
path: | | |
./build/libs/*.jar | |
if-no-files-found: error | |
compression-level: 0 |