Skip to content

Commit

Permalink
temp
Browse files Browse the repository at this point in the history
  • Loading branch information
mainmethod0126 committed Oct 29, 2023
1 parent f6ccee7 commit 1a1ea0a
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/gradle-custom-plugin-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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

0 comments on commit 1a1ea0a

Please sign in to comment.