From 570277137a2baa658ccad78487858205873398da Mon Sep 17 00:00:00 2001 From: Gangzheng Tong Date: Wed, 17 Sep 2025 10:40:05 -0700 Subject: Use self-hosted runner for Windows release build (#8470) - Remove hard-coded Win SDK version. - Using self-hosted machine for building release package in Windows. - Remove the steps from release.yml that have been done in common steup. --------- Co-authored-by: slangbot Co-authored-by: slangbot <186143334+slangbot@users.noreply.github.com> --- .github/actions/common-setup/action.yml | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) (limited to '.github/actions') diff --git a/.github/actions/common-setup/action.yml b/.github/actions/common-setup/action.yml index 8ff2557a1..da24d6baa 100644 --- a/.github/actions/common-setup/action.yml +++ b/.github/actions/common-setup/action.yml @@ -27,12 +27,11 @@ runs: uses: ilammy/msvc-dev-cmd@v1 - name: Install dependencies (Linux only) + if: inputs.os == 'linux' shell: bash run: | - if [[ "${{ inputs.os }}" == "linux" ]]; then - sudo apt-get update - sudo apt-get install -y libx11-dev - fi + sudo apt-get update + sudo apt-get install -y libx11-dev - name: Setup Node.js (Linux only) if: inputs.os == 'linux' -- cgit v1.2.3