diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 8db54b2..868c355 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -51,14 +51,17 @@ jobs: - name: Archive Jar uses: actions/upload-artifact@v3 with: + name: ${{ env.NAME }}-${{ env.VERSION }}.jar path: ./target/${{ env.NAME }}-${{ env.VERSION }}.jar - name: Archive Javadoc uses: actions/upload-artifact@v3 with: + name: ${{ env.NAME }}-${{ env.VERSION }}-javadoc.jar path: ./target/${{ env.NAME }}-${{ env.VERSION }}-javadoc.jar - name: Archive Sources uses: actions/upload-artifact@v3 with: + name: ${{ env.NAME }}-${{ env.VERSION }}-sources.jar path: ./target/${{ env.NAME }}-${{ env.VERSION }}-sources.jar \ No newline at end of file diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index ac6f152..5bb3ffa 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -51,16 +51,19 @@ jobs: - name: Archive Jar uses: actions/upload-artifact@v3 with: + name: ${{ env.NAME }}-${{ env.VERSION }}.jar path: ./target/${{ env.NAME }}-${{ env.VERSION }}.jar - name: Archive Javadoc uses: actions/upload-artifact@v3 with: + name: ${{ env.NAME }}-${{ env.VERSION }}-javadoc.jar path: ./target/${{ env.NAME }}-${{ env.VERSION }}-javadoc.jar - name: Archive Sources uses: actions/upload-artifact@v3 with: + name: ${{ env.NAME }}-${{ env.VERSION }}-sources.jar path: ./target/${{ env.NAME }}-${{ env.VERSION }}-sources.jar - name: Create Release