Fix the depth test used for non-see through text displays (closes #28) #5
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 & Release | |
on: | |
push: | |
tags: | |
- "v[0-9]+.[0-9]+.[0-9a-zA-Z]+" | |
workflow_dispatch: | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Setup Java JDK | |
uses: actions/setup-java@v3 | |
with: | |
java-version: 17 | |
distribution: temurin | |
- name: Gradle Wrapper Validation | |
uses: gradle/wrapper-validation-action@v1 | |
- name: Setup Gradle Build | |
uses: gradle/gradle-build-action@v2 | |
with: | |
arguments: build publish | |
env: | |
NOXCREW_MAVEN_PUBLIC_USERNAME: ${{ secrets.NOXCREW_MAVEN_PUBLIC_USERNAME }} | |
NOXCREW_MAVEN_PUBLIC_PASSWORD: ${{ secrets.NOXCREW_MAVEN_PUBLIC_PASSWORD }} | |
- name: Clean up artifacts | |
run: rm fabric/build/libs/*-sources.jar | |
- name: Create Draft Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
files: fabric/build/libs/*.jar | |
draft: true |