diff --git a/.github/workflows/gradle-custom-plugin-release.yml b/.github/workflows/gradle-custom-plugin-release.yml index ef05640..05c2997 100644 --- a/.github/workflows/gradle-custom-plugin-release.yml +++ b/.github/workflows/gradle-custom-plugin-release.yml @@ -73,7 +73,8 @@ jobs: version="$temp_major$temp_minor$temp_patch$temp_prereleaseVersion" echo "VERSION=$version" >> $GITHUB_OUTPUT - ls "${{ github.workspace }}/app/build/libs" + + ls "${{ github.workspace }}/app/dist" - name: create release id: create_release @@ -93,6 +94,6 @@ jobs: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} with: upload_url: ${{ steps.create_release.outputs.upload_url }} # This pulls from the CREATE RELEASE step above, referencing it's ID to get its outputs object, which include a `upload_url`. See this blog post for more info: https://jasonet.co/posts/new-features-of-github-actions/#passing-data-to-future-steps - asset_path: "${{ github.workspace }}/app/build/libs/gradle-semantic-versioning-manager-plugin-${{ steps.read_version.outputs.VERSION }}.jar" + asset_path: "${{ github.workspace }}/app/dist/gradle-semantic-versioning-manager-plugin-${{ steps.read_version.outputs.VERSION }}.jar" asset_name: gradle-semantic-versioning-manager-plugin-${{ steps.read_version.outputs.VERSION }}.jar asset_content_type: application/jar