From 81e0c0960fc73fa968d5efc31b6c73f5f5d4b550 Mon Sep 17 00:00:00 2001 From: CarmJos Date: Thu, 17 Feb 2022 21:40:52 +0800 Subject: [PATCH] =?UTF-8?q?=E6=AF=8F=E6=AC=A1=E6=9E=84=E5=BB=BA=E5=90=8C?= =?UTF-8?q?=E6=97=B6=E6=8F=90=E4=BE=9B=E2=80=9C=E6=B5=8B=E8=AF=95=E4=BA=A7?= =?UTF-8?q?=E7=89=A9=E2=80=9D=E4=B8=8E=E2=80=9C=E6=9C=80=E7=BB=88=E4=BA=A7?= =?UTF-8?q?=E7=89=A9=E2=80=9D=E3=80=82?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/maven.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index 2bbf0e0..92defbc 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -31,9 +31,13 @@ jobs: MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}} - name: "Target Staging" - run: mkdir staging && cp target/*.jar staging + run: | + - mkdir artifacts + - cp -vrf target/ artifacts/target/ + - cp -vrf asset/*.jar artifacts + - name: "Upload artifact" uses: actions/upload-artifact@v2 with: name: Artifact - path: staging \ No newline at end of file + path: artifacts \ No newline at end of file