Skip to content

Commit e9179e2

Browse files
committed
chore: add debug echo
1 parent a7752b1 commit e9179e2

1 file changed

Lines changed: 3 additions & 1 deletion

File tree

action.yml

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,7 +105,7 @@ runs:
105105
extra-index-url = ${{ inputs.pip-extra-index-url }}"
106106
file: ${{ inputs.dockerfile }}
107107
- name: Image digest
108-
run: echo ${{ steps.docker_build.outputs.digest }}
108+
run: echo "Image digest ${{ steps.docker_build.outputs.digest }}""
109109
shell: bash
110110
- name: Comment latest docker image
111111
if: github.event_name == 'pull_request'
@@ -114,6 +114,8 @@ runs:
114114
# Use GitHub API to create a comment on the PR
115115
PR_NUMBER=${{ github.event.pull_request.number }}
116116
COMMENT='Docker image built: `${{ steps.meta.outputs.tags }}`'
117+
echo "PR number: ${PR_NUMBER}"
118+
echo "Comment ${COMMENT}"
117119
GITHUB_TOKEN=${{ inputs.GITHUB_TOKEN }}
118120
COMMENT_URL="https://api.github.com/repos/${{ github.repository }}/issues/${PR_NUMBER}/comments"
119121

0 commit comments

Comments
 (0)