fix: specify github source for actions-rs

This commit is contained in:
Chance 2025-04-10 22:53:22 -04:00 committed by lily
parent 50601e22f2
commit 371e08c21b
Signed by: lily
GPG key ID: 601F3263FBCBC4B9
2 changed files with 2 additions and 2 deletions

View file

@ -55,14 +55,14 @@ jobs:
echo "PKG_CONFIG_SYSROOT_DIR=/usr/${{ matrix.triple }}" >> $GITHUB_ENV
- name: 🦀 Install Rust target
uses: actions-rs/toolchain@v1
uses: https://github.com/actions-rs/toolchain@v1
with:
toolchain: stable
target: ${{ matrix.target }}
override: true
- name: 🏗️ Build
uses: actions-rs/cargo@v1
uses: https://github.com/actions-rs/cargo@v1
with:
command: build
args: --release --target ${{ matrix.target }}

View file