Skip to content

Commit

Permalink
Merge pull request #123 from whereby/thomas/fix-slack-action-parsing
Browse files Browse the repository at this point in the history
common: Fix slack action parsing
  • Loading branch information
thyal authored Mar 21, 2024
2 parents 127435c + d246d94 commit df1adf3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/actions/notify-slack/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ runs:
id: get-published-packages
shell: bash
run: |
PACKAGES=$(echo ${{ inputs.published_packages }} | jq -r '.packages | map(.name + "@" + .version) | join("\n")')
PACKAGES=$(echo ${{ inputs.published_packages }} | jq -r 'map(.name + "@" + .version) | join("\n")')
echo "PACKAGES=$PACKAGES" >> $GITHUB_ENV
- name: Send slack message
Expand Down

0 comments on commit df1adf3

Please sign in to comment.