Skip to content

Commit

Permalink
Update actions
Browse files Browse the repository at this point in the history
  • Loading branch information
magicmq committed Jan 17, 2025
1 parent eda1ed0 commit 5624b7e
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/maven.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ jobs:
- name: Build with Maven
run: mvn -B package --file pom.xml
- name: Copy artifacts to staging directory
run: mkdir staging && rsync -ar --exclude 'original*' target/*.jar staging
run: mkdir staging && rsync -ar --exclude 'original*' **/target/*.jar staging
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
- name: Maven cleanup
run: mvn --batch-mode --update-snapshots verify
- name: Copy artifacts to staging directory
run: mkdir staging && rsync -ar --exclude 'original*' target/*.jar staging
run: mkdir staging && rsync -ar --exclude 'original*' **/target/*.jar staging
- name: Fetch tag name
id: tagname
uses: actions/github-script@v7
Expand Down

0 comments on commit 5624b7e

Please sign in to comment.