Skip to content

Commit

Permalink
Display tags on publish comment (#92)
Browse files Browse the repository at this point in the history
  • Loading branch information
Oded-B authored Jun 29, 2023
1 parent 8e55467 commit 318168e
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion .github/workflows/docker-publish-on-comment.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,7 +108,7 @@ jobs:
const name = '${{ github.workflow }}';
const url = '${{ github.server_url }}/${{ github.repository }}/actions/runs/${{ github.run_id }}';
const success = '${{ job.status }}' === 'success';
const body = `${name}: ${success ? 'succeeded ✅' : 'failed ❌'}\n${url}`;
const body = `${name}: ${success ? 'succeeded ✅' : 'failed ❌'}\n${url}\n${{ steps.meta.outputs.tags }}`;
await github.rest.issues.createComment({
issue_number: context.issue.number,
Expand Down

0 comments on commit 318168e

Please sign in to comment.