diff options
| author | Spencer <spencer@sf-n.com> | 2022-09-10 18:10:56 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-09-10 18:10:56 -0700 |
| commit | b843b8801d5cfe0a17e6d7fcc43f4fd98c613596 (patch) | |
| tree | f104638003b30213606daa551a470e9afe93d292 | |
| parent | 54fe5b7fc223677f4525886c58b1ae9767da8231 (diff) | |
| download | rust-b843b8801d5cfe0a17e6d7fcc43f4fd98c613596.tar.gz rust-b843b8801d5cfe0a17e6d7fcc43f4fd98c613596.zip | |
revert conditional logic for apt update step
| -rw-r--r-- | .github/workflows/release.yaml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/release.yaml b/.github/workflows/release.yaml index 785eb6fc31c..312ea066ff3 100644 --- a/.github/workflows/release.yaml +++ b/.github/workflows/release.yaml @@ -79,7 +79,7 @@ jobs: node-version: 16.x - name: Update apt repositories - if: "!matrix.container && (matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'arm-unknown-linux-gnueabihf')" + if: matrix.target == 'aarch64-unknown-linux-gnu' || matrix.target == 'arm-unknown-linux-gnueabihf' run: sudo apt-get update - name: Install AArch64 target toolchain |
