Don't run tests on release (#37)

* Don't run tests on release
 - They should already have been run, alternatively we'd need to enable xvfb as we do for the build step

* Update .github/workflows/release-tags.yml

Co-authored-by: Raven Szewczyk <git@eigenraven.me>

---------

Co-authored-by: Raven Szewczyk <git@eigenraven.me>
This commit is contained in:
Jason Mitchell 2024-02-10 09:42:00 -08:00 committed by GitHub
parent 87bfdc7ab1
commit dc7cdb81cc
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -55,7 +55,7 @@ jobs:
run: ./gradlew --build-cache --info --stacktrace -PmavenPublishUrl='${{ env.MAVEN_PUBLISHING_URL }}' ${{ inputs.workspace }}
- name: Build the mod
run: ./gradlew --build-cache --info --stacktrace -PmavenPublishUrl='${{ env.MAVEN_PUBLISHING_URL }}' build
run: ./gradlew --build-cache --info --stacktrace -PmavenPublishUrl='${{ env.MAVEN_PUBLISHING_URL }}' assemble
# Continue on error in the following steps to make sure releases still get made even if one of the methods fails