fix: add build job

This commit is contained in:
mashal-m
2023-02-27 16:24:00 +05:00
parent e8e7ca8948
commit 018aea6a34

View File

@@ -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: