From b89e9196f98d24735553233ac587638c45a28c7a Mon Sep 17 00:00:00 2001 From: "Glenn Y. Rolland" Date: Sun, 6 Feb 2022 13:15:56 +0100 Subject: [PATCH] CI: split tasks --- .github/workflows/crystal.yml | 12 +++++++++++- 1 file changed, 11 insertions(+), 1 deletion(-) diff --git a/.github/workflows/crystal.yml b/.github/workflows/crystal.yml index 0db7acb..ce992f9 100644 --- a/.github/workflows/crystal.yml +++ b/.github/workflows/crystal.yml @@ -26,6 +26,7 @@ jobs: build: runs-on: ubuntu-latest + needs: test container: image: crystallang/crystal @@ -41,7 +42,16 @@ jobs: run: shards install - name: Run tests run: crystal build - + + deliver: + runs-on: ubuntu-latest + needs: build + + container: + image: crystallang/crystal + + steps: + - uses: actions/checkout@v2 - name: Create Release id: create_release uses: actions/create-release@v1