1 parent 4829215 commit 6390d8fCopy full SHA for 6390d8f
1 file changed
.github/workflows/release.yml
@@ -28,11 +28,17 @@ jobs:
28
steps:
29
- uses: actions/checkout@v4
30
31
+ - name: Configure git for private repos
32
+ run: git config --global url."https://${{ secrets.CARGO_GIT_TOKEN }}@github.com/".insteadOf "https://github.com/"
33
+
34
- name: Install Rust
35
uses: dtolnay/rust-toolchain@stable
36
with:
37
targets: ${{ matrix.target }}
38
39
+ - name: Cache cargo
40
+ uses: Swatinem/rust-cache@v2
41
42
- name: Install cross-compilation tools
43
if: matrix.target == 'aarch64-unknown-linux-gnu'
44
run: |
0 commit comments