Skip to content

Commit

Permalink
fix: quote release tag (#78)
Browse files Browse the repository at this point in the history
  • Loading branch information
jfoo1984 authored Jan 27, 2024
1 parent 60ba125 commit 929ebf5
Showing 1 changed file with 1 addition and 3 deletions.
4 changes: 1 addition & 3 deletions .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ jobs:
repo: context.repo.repo
})
}
console.log("releaseObj", releaseObj);
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 != ''
Expand All @@ -48,7 +46,7 @@ jobs:
- name: Checkout repository
uses: actions/checkout@v3
with:
ref: ${{ steps.set-release-tag.outputs.release_tag }}
ref: '${{ steps.get-release.outputs.result }}'
# - name: Assume happy-api deployment role
# uses: aws-actions/configure-aws-credentials@v2
# with:
Expand Down

0 comments on commit 929ebf5

Please sign in to comment.