Skip to content

Commit

Permalink
setup node for workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lakhoune committed Jul 9, 2023
1 parent 70edb13 commit 727a82f
Show file tree
Hide file tree
Showing 4 changed files with 16 additions and 0 deletions.
4 changes: 4 additions & 0 deletions .github/workflows/javadoc_latest.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 17
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/javadoc_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 17
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish_to_archiva_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,10 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 17
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle and publish as release to archiva
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/publish_to_archiva_snapshot.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,10 @@ jobs:
uses: actions/setup-java@v1
with:
java-version: 17
- name: Set up node
uses: actions/setup-node@v2
with:
node-version: '16'
- name: Grant execute permission for gradlew
run: chmod +x gradlew
- name: Build with Gradle and publish as snapshot to archiva
Expand Down

0 comments on commit 727a82f

Please sign in to comment.