diff --git a/.github/actions/upload-artifact/action.yml b/.github/actions/upload-artifact/action.yml index cabd039f43d1..b3c8d7b470e4 100644 --- a/.github/actions/upload-artifact/action.yml +++ b/.github/actions/upload-artifact/action.yml @@ -41,7 +41,7 @@ runs: overwrite: true - name: Upload artifact - uses: lynx-infra/cache + uses: lynx-infra/cache@main if: ${{ inputs.type == 'lynx' }} with: name: ${{ inputs.name }} diff --git a/.github/workflows/reusable-build.yml b/.github/workflows/reusable-build.yml index 35225eed374c..d6b19a0bd4b7 100644 --- a/.github/workflows/reusable-build.yml +++ b/.github/workflows/reusable-build.yml @@ -173,15 +173,15 @@ jobs: - name: Build i686-pc-windows-msvc if: ${{ inputs.target == 'i686-pc-windows-msvc' && steps.check_cache.outputs.files_exists != 'true' && !inputs.skipable }} - run: RUST_TARGET=${{ inputs.target }} DISABLE_PLUGIN=1 pnpm build:binding:${{ inputs.profile }} + run: ALL_PROXY=$HTTP_PROXY RUST_TARGET=${{ inputs.target }} DISABLE_PLUGIN=1 pnpm build:binding:${{ inputs.profile }} - name: Build x86_64-pc-windows-msvc if: ${{ inputs.target == 'x86_64-pc-windows-msvc' && steps.check_cache.outputs.files_exists != 'true' && !inputs.skipable }} - run: RUST_TARGET=${{ inputs.target }} pnpm build:binding:${{ inputs.profile }} + run: ALL_PROXY=$HTTP_PROXY RUST_TARGET=${{ inputs.target }} pnpm build:binding:${{ inputs.profile }} - name: Build aarch64-pc-windows-msvc if: ${{ inputs.target == 'aarch64-pc-windows-msvc' && steps.check_cache.outputs.files_exists != 'true' && !inputs.skipable }} - run: RUST_TARGET=${{ inputs.target }} DISABLE_PLUGIN=1 pnpm build:binding:${{ inputs.profile }} + run: ALL_PROXY=$HTTP_PROXY RUST_TARGET=${{ inputs.target }} DISABLE_PLUGIN=1 pnpm build:binding:${{ inputs.profile }} # Mac - name: Build x86_64-apple-darwin