We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent aa496ab commit 60b4a79Copy full SHA for 60b4a79
.github/workflows/upload-binaries.yml
@@ -26,6 +26,11 @@ jobs:
26
x86_64-unknown-linux-musl,
27
]
28
steps:
29
+ - name: Install dependencies
30
+ run: |
31
+ sudo apt update
32
+ sudo apt install -y gcc-multilib # required to build for 32-bit arch
33
+ sudo apt install -y curl # required for Rust installation
34
- name: Checkout
35
uses: actions/checkout@v4
36
- name: Install Rust
@@ -43,10 +48,6 @@ jobs:
43
48
credentials_json: ${{ secrets.GCP_SA_KEY }}
44
49
- name: "Set up Cloud SDK"
45
50
uses: google-github-actions/setup-gcloud@v2
46
- - name: Install dependencies
47
- run: |
- sudo apt update
- sudo apt install -y gcc-multilib # required to build for 32-bit arch
51
52
- name: Install aarch64-unknown-linux-gnu linker
53
if: ${{ matrix.target == 'aarch64-unknown-linux-gnu' }}
0 commit comments