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