From a080acefbc5cf5c2f09479a7b463f59d799f5f40 Mon Sep 17 00:00:00 2001 From: Chris Kankiewicz Date: Tue, 24 Aug 2021 19:55:42 -0700 Subject: [PATCH] Change Create Release CI step dependencies --- .github/workflows/test-suite.yaml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/test-suite.yaml b/.github/workflows/test-suite.yaml index 58fedc5..62707f8 100644 --- a/.github/workflows/test-suite.yaml +++ b/.github/workflows/test-suite.yaml @@ -101,7 +101,7 @@ jobs: name: Create Release runs-on: 'ubuntu-latest' if: startsWith(github.ref, 'refs/tags/') - needs: tests + needs: [asset-compilation, coding-standards, static-analysis, tests] env: GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}