From 1bcd4021dd7693767e574c16db9172b29b8d0ec5 Mon Sep 17 00:00:00 2001 From: Mauro Balades Date: Tue, 23 Jul 2024 13:44:46 +0200 Subject: [PATCH] chore: Update Windows profile build workflow to remove unnecessary steps and dependencies --- .github/workflows/alpha.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/alpha.yml b/.github/workflows/alpha.yml index 75d14925e..584fca5ad 100644 --- a/.github/workflows/alpha.yml +++ b/.github/workflows/alpha.yml @@ -215,7 +215,7 @@ jobs: uses: ./.github/workflows/linux-alpha-build.yml permissions: contents: write - needs: [build-data, windows-step-2] # Windows step 2 in order to avoid cloning all the artifacts again + needs: [build-data] # Windows step 2 in order to avoid cloning all the artifacts again with: build-version: ${{ needs.build-data.outputs.version }} @@ -224,7 +224,7 @@ jobs: uses: ./.github/workflows/macos-alpha-build.yml permissions: contents: write - needs: [build-data, windows-step-2] + needs: [build-data] with: build-version: ${{ needs.build-data.outputs.version }}