Add recipes for creative hatches from their respective creative parts. #13
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
# CI/CD: Build ZBGT on Commit | |
name: Build ZBGT | |
on: | |
push: | |
pull_request: | |
workflow_dispatch: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
build: | |
name: Build ZBGT | |
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 |