From bccd85e86dc3826222f24a3f2a8217ba406b4f93 Mon Sep 17 00:00:00 2001 From: Vui Lam Date: Tue, 5 Mar 2024 20:30:21 -0800 Subject: [PATCH] Add debug output to release job --- .github/workflows/release.yaml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index bd14a9c3f..6020582fc 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -2,8 +2,7 @@ name: Release on: push: - branches: - - "!not_activated_on_branches!*" + branches: [ debug* ] tags: - "v[0-9]+.[0-9]+.[0-9]+" - "v[0-9]+.[0-9]+.[0-9]+-*" @@ -99,6 +98,7 @@ jobs: --start-sha ${{ steps.generate-release-details.outputs.start-sha }} \ --end-sha ${{ steps.generate-release-details.outputs.end-sha }} \ --output /tmp/${{ steps.time.outputs.time }}-bin-notes + cat /tmp/${{ steps.time.outputs.time }}-bin-notes - name: Get Github Release notes uses: octokit/request-action@v2.x @@ -116,7 +116,9 @@ jobs: id: get-new-contributors run: | githubOutput="/tmp/${{ steps.time.outputs.time }}-github-output" + echo "start redir" echo "${{ fromJson(steps.get-github-release-notes.outputs.data).body }}" > "$githubOutput" + echo "end redir" - name: Generate the release notes shell: bash