From 869f1e16f9d5559cbf4bfa69eecc092ffd93614a Mon Sep 17 00:00:00 2001 From: adbenitez Date: Fri, 9 Apr 2021 23:15:59 -0400 Subject: [PATCH] fix release.yml 6 --- .github/workflows/release.yml | 8 +++----- 1 file changed, 3 insertions(+), 5 deletions(-) diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index f28ac6373..a4d6fff08 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -10,19 +10,17 @@ jobs: check: runs-on: ubuntu-latest outputs: - status: ${{ steps.check-tag.conclusion }} + match: ${{ steps.check-tag.outputs.match }} steps: - id: check-tag run: | if [[ "${{ github.event.ref }}" =~ ^refs/tags/v[0-9]+\.[0-9]+\.[0-9]+$ ]]; then - exit 0 - else - exit 1 + echo ::set-output name=match::success fi build: needs: check - if: needs.check.outputs.status == 'success' + if: needs.check.outputs.match == 'true' name: Upload Release APK runs-on: ubuntu-latest steps: