From 018aea6a34621cbc5661418f24f2042a95506b2e Mon Sep 17 00:00:00 2001 From: mashal-m Date: Mon, 27 Feb 2023 16:24:00 +0500 Subject: [PATCH] fix: add build job --- .github/workflows/ci.yml | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 4de2fc0..7e36db0 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -17,6 +17,13 @@ jobs: outputs: new-release-published: ${{ steps.get-next-version.outputs.new-release-published }} new-release-version: ${{ steps.get-next-version.outputs.new-release-version }} + build: + runs-on: ubuntu-latest + needs: next-version + if: needs.get-next-version.outputs.new-release-published == 'true' + steps: + - uses: actions/checkout@v3 + - run: echo "The new release version is ${{ needs.get-next-version.outputs.new-release-version }}" tests: runs-on: ubuntu-latest strategy: