Skip to content

Commit

Permalink
fix: Unhandled error: ReferenceError: freitas is not defined
Browse files Browse the repository at this point in the history
  • Loading branch information
rutesantos4 committed Sep 24, 2023
1 parent f186513 commit d011001
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/publish-github.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -51,8 +51,8 @@ jobs:
async function getReleaseId() {
try {
const response = await github.rest.repos.getLatestRelease({
owner: ${{ github.repository_owner }},
repo: ${{ github.event.repository.name }}
owner: '${{ github.repository_owner }}',
repo: '${{ github.event.repository.name }}'
});
console.log(`Id of the latest release is ${response.data.id} was found.`);
Expand Down

0 comments on commit d011001

Please sign in to comment.