From 318168e8b6ce8c31b1d1be87dacbca1782d5d8a3 Mon Sep 17 00:00:00 2001 From: Oded Ben Ozer Date: Thu, 29 Jun 2023 11:02:17 +0200 Subject: [PATCH] Display tags on publish comment (#92) --- .github/workflows/docker-publish-on-comment.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/docker-publish-on-comment.yml b/.github/workflows/docker-publish-on-comment.yml index a0bbdac4..a35a1dc3 100644 --- a/.github/workflows/docker-publish-on-comment.yml +++ b/.github/workflows/docker-publish-on-comment.yml @@ -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,