From 354b28bf4cc8a1db3b44f670a6d8758809096ebb Mon Sep 17 00:00:00 2001 From: Matt Malec Date: Mon, 16 Oct 2023 12:39:07 -0400 Subject: [PATCH] fix: add the output to the job --- .github/workflows/release.yml | 3 +++ 1 file changed, 3 insertions(+) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index db31d21..b1a1d95 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -6,9 +6,12 @@ on: jobs: branch_exists: runs-on: ubuntu-20.04 + outputs: + branch_exists: ${{ steps.check_branch.outputs.branch_exists }} steps: - uses: actions/checkout@v2 - name: Check if release already exists + id: check_branch env: REF: ${{ github.ref }} run: |