Skip to content

Commit

Permalink
fix generated url in release process
Browse files Browse the repository at this point in the history
Signed-off-by: Jorge Aguilera <jorge@edn.es>
  • Loading branch information
jagedn committed Jul 2, 2024
1 parent d3bc6e3 commit 0d75d98
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,8 +62,8 @@ jobs:
with:
draft: false
prerelease: false
release_name: ${{ steps.version.outputs.version }}
tag_name: ${{ steps.version.outputs.version }}
release_name: v${{ steps.version.outputs.version }}
tag_name: ${{ github.ref }}
body_path: CHANGELOG.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ abstract class JsonPluginTask extends DefaultTask{


protected String resolveURL(){
"${downloadUrl.get()}/${project.version}/${project.name}-${project.version}.zip"
"${downloadUrl.get()}/v${project.version}/${project.name}-${project.version}.zip"
}

protected static String now() {
Expand Down

0 comments on commit 0d75d98

Please sign in to comment.