Skip to content

Commit

Permalink
fix: Access tag name path correctly (#77)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfoo1984 authored Jan 27, 2024
1 parent 790f318 commit 60ba125
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -36,8 +36,8 @@ jobs:
})
}
console.log("releaseObj", releaseObj);
console.log("releaseObj.tag_name", releaseObj.tag_name);
return releaseObj.tag_name
console.log("releaseObj.data.tag_name", releaseObj.data.tag_name);
return releaseObj.data.tag_name
- name: Output Github Release
if: steps.get-release.outputs.result != ''
id: set-release-tag
Expand Down

0 comments on commit 60ba125

Please sign in to comment.