Skip to content

Commit

Permalink
Fix github actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Christian Hellmund committed Apr 14, 2022
1 parent da97249 commit 5f6ab39
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/release_phar.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ jobs:

- name: Get commit message
run: |
echo "commitmsg=$(git tag -l --format='%(contents)' ${GITHUB_REF/refs\/tags\//})" >> $GITHUB_ENV
echo 'commitmsg<<EOF' >> $GITHUB_ENV
echo $(git tag -l --format='%(contents)' ${GITHUB_REF/refs\/tags\//}) >> $GITHUB_ENV
echo 'EOF' >> $GITHUB_ENV
- name: Show commit message
run : echo "${{ env.commitmsg }}"

Expand Down

0 comments on commit 5f6ab39

Please sign in to comment.