-
Notifications
You must be signed in to change notification settings - Fork 4
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add Github action for building Java #44
Conversation
.github/workflows/java-build-v1.yml
Outdated
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why an old version? actions/checkout@v4
is the latest
.github/workflows/java-build-v0.yml
Outdated
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Why an old version? actions/checkout@v4
is the latest
.github/workflows/java-build-v0.yml
Outdated
java-version: ${{ matrix.java_version }} | ||
- name: Make Maven Wrapper executable | ||
if: contains(matrix.os, 'win') == false | ||
working-directory: ./java |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This dir does not seem to exist?
.github/workflows/java-build-v0.yml
Outdated
working-directory: ./java | ||
run: chmod +x mvnw | ||
- name: Package | ||
working-directory: ./java |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This dir does not seem to exist?
.github/workflows/java-build-v1.yml
Outdated
java-version: ${{ matrix.java_version }} | ||
- name: Make Maven Wrapper executable | ||
if: contains(matrix.os, 'win') == false | ||
working-directory: ./java |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This dir does not seem to exist?
.github/workflows/java-build-v1.yml
Outdated
working-directory: ./java | ||
run: chmod +x mvnw | ||
- name: Package | ||
working-directory: ./java |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This dir does not seem to exist?
8beb9ea
to
d816a89
Compare
No description provided.