Skip to content

Commit

Permalink
GH-Release is done!!
Browse files Browse the repository at this point in the history
  • Loading branch information
tanishisherewithhh committed Apr 19, 2024
1 parent bdc631d commit eafa261
Showing 1 changed file with 7 additions and 2 deletions.
9 changes: 7 additions & 2 deletions .github/workflows/gradle.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,20 +37,25 @@ jobs:
- name: build
run: ./gradlew build

- name: remove *-sources.jar
run: rm ./build/libs/*-sources.jar || true

- name: capture build artifacts
if: ${{ runner.os == 'Linux' && matrix.java == '17' }} # Only upload artifacts built from the latest java on one OS
uses: actions/upload-artifact@v3
with:
name: Dynamichud
path: build/libs/

- name: Release
- name: pre-release tag
uses: softprops/action-gh-release@v2
with:
tag_name: "latest"
name: "DynamicHUD Pre-release"
prerelease: true
fail_on_unmatched_files: true
generate_release_notes: true;
generate_release_notes: true
body:
"Pre-release generated from github actions. Maybe unstable to use."
files: |
./build/libs/*.jar

0 comments on commit eafa261

Please sign in to comment.