Skip to content

Commit

Permalink
updated
Browse files Browse the repository at this point in the history
  • Loading branch information
gzukel committed Nov 7, 2023
1 parent f9feac1 commit 1c2baf4
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions .github/workflows/publish-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,8 @@ jobs:
id: release_notes
run: |
GITHUB_RELEASE_TEXT=$(curl --location --request GET ${{ github.event.pull_request.url }} --header 'Authorization: token ${{ secrets.GITHUB_TOKEN }}' | jq .body)
echo -e ${GITHUB_RELEASE_TEXT} > Release.txt
echo -e ${GITHUB_RELEASE_TEXT} > ./Release.txt
cat ./Release.txt
- name: Set Version from the PR title.
if: github.event_name == 'pull_request'
Expand Down Expand Up @@ -116,7 +117,7 @@ jobs:
uses: softprops/action-gh-release@v1
with:
token: ${{ secrets.PAT_GITHUB_SERVICE_ACCT }}
body_path: Release.txt
body_path: ./Release.txt
tag_name: ${{ env.GITHUB_TAG_MAJOR_VERSION }}

- name: Create GitHub Release Hot Fix
Expand Down

0 comments on commit 1c2baf4

Please sign in to comment.