From 631e1a3b61f7d5d3d2ea811754a0aba72a97d583 Mon Sep 17 00:00:00 2001 From: Vaibhav Kamra Date: Mon, 1 May 2023 14:03:01 -0700 Subject: [PATCH] Remove Unit-Test dependency in release job (#3274) Release job was skipping because Unit-Test is not being run --- #### Does this PR need a docs update or release note? - [ ] :white_check_mark: Yes, it's included - [ ] :clock1: Yes, but in a later PR - [ ] :no_entry: No #### Type of change - [ ] :sunflower: Feature - [ ] :bug: Bugfix - [ ] :world_map: Documentation - [ ] :robot: Supportability/Tests - [x] :computer: CI/Deployment - [ ] :broom: Tech Debt/Cleanup --- .github/workflows/ci.yml | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 3d2e1da78..eea126407 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -440,7 +440,7 @@ jobs: # ---------------------------------------------------------------------------------------------------- Publish-Binary: - needs: [Test-Suite-Trusted, Unit-Test-Suite, Linting, Website-Linting, SetEnv] + needs: [Test-Suite-Trusted, Linting, Website-Linting, SetEnv] environment: ${{ needs.SetEnv.outputs.environment }} runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' @@ -510,7 +510,7 @@ jobs: path: src/dist/corso_windows_amd64_v1/corso.exe Publish-Image: - needs: [Test-Suite-Trusted, Unit-Test-Suite, Linting, Website-Linting, SetEnv] + needs: [Test-Suite-Trusted, Linting, Website-Linting, SetEnv] environment: ${{ needs.SetEnv.outputs.environment }} runs-on: ubuntu-latest if: startsWith(github.ref, 'refs/tags/') @@ -652,7 +652,7 @@ jobs: ./corso.exe --version 2>&1 | grep -E "version: ${{ env.CORSO_VERSION }}$" Publish-Website-Test: - needs: [Test-Suite-Trusted, Unit-Test-Suite, Linting, Website-Linting, SetEnv] + needs: [Test-Suite-Trusted, Linting, Website-Linting, SetEnv] environment: ${{ needs.SetEnv.outputs.environment }} runs-on: ubuntu-latest if: github.ref == 'refs/heads/main'