diff --git a/.github/workflows/release-python-grpc-web.yml b/.github/workflows/release-python-grpc-web.yml index 463512fdc..26065c208 100644 --- a/.github/workflows/release-python-grpc-web.yml +++ b/.github/workflows/release-python-grpc-web.yml @@ -82,16 +82,16 @@ jobs: target: [x86_64, aarch64] steps: - uses: actions/checkout@v2 - - name: Install dependencies - if: matrix.target == aarch64 - run: - sudo apt-get install qemu-user gcc-aarch64-linux-gnu libc6-dev-arm64-cross - name: Install Rust uses: actions-rs/toolchain@v1 with: toolchain: stable profile: minimal default: true + - name: Install dependencies + if: matrix.target == 'aarch64' + run: | + sudo apt-get install qemu-user gcc-aarch64-linux-gnu libc6-dev-arm64-cross - uses: actions/setup-python@v4 with: python-version: ${{ matrix.python-version }}