Skip to content

Commit e50b5b8

Browse files
committed
feat(actions): fix artifact upload
1 parent 5561e66 commit e50b5b8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

.github/workflows/maven.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,10 @@ jobs:
2222
cache: maven
2323
- name: Build with Maven
2424
run: mvn -B package --file pom.xml
25+
- name: Copy JAR
26+
run: mkdir prod && cp out/*.jar prod
2527
- name: Upload Artifact
2628
uses: actions/upload-artifact@v3
2729
with:
2830
name: Package
29-
path: staging
31+
path: prod

0 commit comments

Comments
 (0)