We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f212d5a commit f8ccf2bCopy full SHA for f8ccf2b
.github/workflows/pack.yml
@@ -22,13 +22,11 @@ jobs:
22
- name: Pack
23
run: |
24
mvn package -DskipTests --batch-mode
25
- cp pom.xml aspose-email-cloud-0.0.1.pom
26
- - name: Zip
27
- uses: montudor/action-zip@v0.1.0
28
- with:
29
- args: zip -qq -r ./package.zip ./target/*.jar aspose-email-cloud-0.0.1.pom
+ mkdir result
+ cp pom.xml result/aspose-email-cloud-0.0.1.pom
+ cp target/*.jar result
30
- name: Upload artifact
31
uses: actions/upload-artifact@v1
32
with:
33
name: package
34
- path: package.zip
+ path: result
0 commit comments