Skip to content

Commit

Permalink
github actions fix
Browse files Browse the repository at this point in the history
  • Loading branch information
cardo-podcast committed Sep 1, 2024
1 parent 2d7a593 commit f1989fa
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion .github/workflows/publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,12 @@ jobs:
TAG_INFO=$(curl -s -X GET -H "Authorization: Bearer ${{secrets.GITHUB_TOKEN}}" "https://api.github.com/repos/${{ github.repository }}/git/tags/$TAG_SHA")

MESSAGE=$(echo $TAG_INFO | jq -r '.message')
echo "MESSAGE=$MESSAGE" >> $GITHUB_OUTPUT

# multiline GIHUB_OUTPUT variable
echo "MESSAGE<<EOF" >> $GITHUB_OUTPUT
echo "$MESSAGE" >> $GITHUB_OUTPUT
echo "EOF" >> $GITHUB_OUTPUT
shell: bash

- name: import windows certificate
if: matrix.platform == 'windows-latest'
Expand Down

0 comments on commit f1989fa

Please sign in to comment.