Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bug existed where environment variable values were cached in the pipe… #28

Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/gradle-custom-plugin-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -74,7 +74,7 @@ jobs:
echo "temp_prereleaseVersion : $temp_prereleaseVersion"

version="$temp_major$temp_minor$temp_patch$temp_prereleaseVersion"
echo "VERSION=$version" >> $GITHUB_OUTPUT
echo "APPLICATION_VERSION=$version" >> $GITHUB_OUTPUT


- name: create release
Expand All @@ -83,8 +83,8 @@ jobs:
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
tag_name: ${{ steps.read_version.outputs.VERSION }}
release_name: ${{ steps.read_version.outputs.VERSION }}
tag_name: ${{ steps.read_version.outputs.APPLICATION_VERSION }}
release_name: ${{ steps.read_version.outputs.APPLICATION_VERSION }}
prerelease: true


Expand All @@ -95,6 +95,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ steps.create_release.outputs.upload_url }}
asset_path: "${{ github.workspace }}/app/dist/${{ steps.read_version.outputs.VERSION }}/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_path: "${{ github.workspace }}/app/dist/${{ steps.read_version.outputs.APPLICATION_VERSION }}/gradle-semantic-versioning-manager-plugin-${{ steps.read_version.outputs.APPLICATION_VERSION }}.jar"
asset_name: gradle-semantic-versioning-manager-plugin-${{ steps.read_version.outputs.APPLICATION_VERSION }}.jar
asset_content_type: application/jar
Loading