forked from dapr/java-sdk
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix script tp update release version. (dapr#1153)
- Loading branch information
1 parent
b683fce
commit 0b7a051
Showing
6 changed files
with
72 additions
and
16 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
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 |
---|---|---|
@@ -0,0 +1,34 @@ | ||
name: Validate Javadocs Generation | ||
|
||
on: | ||
workflow_dispatch: | ||
push: | ||
branches: | ||
- master | ||
- release-* | ||
tags: | ||
- v* | ||
|
||
pull_request: | ||
branches: | ||
- master | ||
- release-* | ||
|
||
jobs: | ||
build: | ||
name: "Validate Javadocs generation" | ||
runs-on: linux-arm64-latest-4-cores | ||
timeout-minutes: 30 | ||
env: | ||
JDK_VER: 17 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- name: Set up OpenJDK ${{ env.JDK_VER }} | ||
uses: actions/setup-java@v4 | ||
with: | ||
distribution: 'temurin' | ||
java-version: ${{ env.JDK_VER }} | ||
- name: Install jars | ||
run: ./mvnw install -q -B -DskipTests | ||
- name: Validate Java docs generation | ||
run: ./mvnw site-deploy |
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
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