-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1 from perfana/add-monitor-and-socket-events
Add monitor and socket events
- Loading branch information
Showing
21 changed files
with
3,715 additions
and
67 deletions.
There are no files selected for viewing
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -24,21 +24,21 @@ jobs: | |
run: echo "sha_short=$(git rev-parse --short HEAD)" >> $GITHUB_OUTPUT | ||
|
||
- name: Set up JDK | ||
uses: actions/setup-java@v3 | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: '17' | ||
|
||
- name: Maven build | ||
run: ./mvnw clean package | ||
|
||
- name: get tag | ||
uses: olegtarasov/[email protected] | ||
id: tagName | ||
with: | ||
tagRegex: "(.*)" | ||
|
||
- name: Maven build | ||
run: ./mvnw -Drevision=${{ env.GIT_TAG_NAME }} -clean package | ||
|
||
- uses: ncipollo/release-action@v1 | ||
with: | ||
artifacts: "target/jfr-exporter-*.jar" | ||
artifacts: "target/jfr-exporter-${{ env.GIT_TAG_NAME }}.jar" | ||
body: "Release ${{ env.GIT_TAG_NAME }}" |
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
Oops, something went wrong.