From e192a896b72c37dfc4edf4f6d97628b1ed02483f Mon Sep 17 00:00:00 2001 From: CarmJos Date: Mon, 14 Mar 2022 12:00:16 +0800 Subject: [PATCH] =?UTF-8?q?=E4=BF=AE=E6=94=B9=E6=9E=84=E4=BB=B6=E4=B8=8A?= =?UTF-8?q?=E4=BC=A0=E7=9A=84=E6=96=B9=E5=BC=8F?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .github/workflows/maven.yml | 17 +++++++++-------- 1 file changed, 9 insertions(+), 8 deletions(-) diff --git a/.github/workflows/maven.yml b/.github/workflows/maven.yml index df7120b..cd0e53d 100644 --- a/.github/workflows/maven.yml +++ b/.github/workflows/maven.yml @@ -29,14 +29,15 @@ jobs: env: MAVEN_USERNAME: ${{ github.repository_owner }} MAVEN_TOKEN: ${{secrets.GITHUB_TOKEN}} - - name: "Target Staging" - run: | - mkdir artifacts - cp -vrf target/ artifacts/target/ - cp -vrf asset/*.jar artifacts - name: "Upload artifact" - uses: actions/upload-artifact@v2 + uses: actions/upload-artifact@v3 with: - name: Artifact - path: artifacts \ No newline at end of file + name: artifact + path: target + + - name: "Upload assets" + uses: actions/upload-artifact@v3 + with: + name: assets + path: asset \ No newline at end of file