From 1e6ef63d1757c50c9f4205606f4df0fb385dfacd Mon Sep 17 00:00:00 2001 From: Proudust Date: Sun, 17 Dec 2023 12:52:21 +0900 Subject: [PATCH] :wrench: Add Check outputs in GHActions --- .github/workflows/build.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 658726e..1f58a74 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -157,6 +157,13 @@ jobs: id: ghd uses: ./ + - name: Check outputs + run: | + echo "describe: ${{ steps.ghd.outputs.describe }}" + echo "tag : ${{ steps.ghd.outputs.tag }}" + echo "distance: ${{ steps.ghd.outputs.distance }}" + echo "sha : ${{ steps.ghd.outputs.sha }}" + - name: Create Release and Upload Files run: | if gh release view "${GITHUB_RELEASE_TAG}" --json tagName >/dev/null && echo 'release found'; then