diff --git a/.github/workflows/gradle.yml b/.github/workflows/gradle.yml index dc32e0f..1f405ce 100644 --- a/.github/workflows/gradle.yml +++ b/.github/workflows/gradle.yml @@ -1,10 +1,5 @@ -# Automatically build the project and run any configured tests for every push -# and submitted pull request. This can help catch issues that only occur on -# certain platforms or Java versions, and provides a first line of defence -# against bad commits. - name: build -on: [pull_request,push] +on: [pull_request, push] permissions: contents: write @@ -12,9 +7,7 @@ jobs: build: strategy: matrix: - java: [ - 21, - ] + java: [21] os: [ubuntu-22.04] runs-on: ${{ matrix.os }} steps: @@ -48,13 +41,13 @@ jobs: path: build/libs/ - name: pre-release action + if: github.event_name == 'push' uses: softprops/action-gh-release@v2.0.8 with: tag_name: "latest" name: "DynamicHUD Pre-release" prerelease: true - body: - "Pre-release generated from github actions on push commit. Maybe unstable to use." + body: "Pre-release generated from github actions on push commit. Maybe unstable to use." fail_on_unmatched_files: true generate_release_notes: true files: | diff --git a/src/main/resources/assets/DynamicHUD/logo.png b/src/main/resources/assets/DynamicHUD/logo.png deleted file mode 100644 index bb4962c..0000000 Binary files a/src/main/resources/assets/DynamicHUD/logo.png and /dev/null differ