-
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.
- Loading branch information
1 parent
aea6c8e
commit b558d75
Showing
1 changed file
with
3 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -41,12 +41,12 @@ jobs: | |
- name: test if cd last step will affect this setp | ||
run: echo "test if cd last step will affect this setp" && pwd | ||
# Optional: Uploads the full dependency graph to GitHub to improve the quality of Dependabot alerts this repository can receive | ||
- run: mvn --batch-mode --update-snapshots verify | ||
- run: mkdir staging && cp target/*.jar staging | ||
- run: cd java && mvn --batch-mode --update-snapshots verify | ||
- run: cd java && mkdir staging && cp target/*.jar staging | ||
- uses: actions/upload-artifact@v4 | ||
with: | ||
name: Package | ||
path: staging | ||
path: java/staging | ||
- name: Update dependency graph | ||
uses: advanced-security/[email protected] | ||
with: | ||
|