fix: specify github source for actions-rs

This commit is contained in:
Chance 2025-04-10 22:53:22 -04:00 committed by BitSyndicate
parent 1ded9b14b1
commit b15d093e0c
Signed by: bitsyndicate
GPG key ID: 443E4198D6BBA6DE
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 echo "PKG_CONFIG_SYSROOT_DIR=/usr/${{ matrix.triple }}" >> $GITHUB_ENV
- name: 🦀 Install Rust target - name: 🦀 Install Rust target
uses: actions-rs/toolchain@v1 uses: https://github.com/actions-rs/toolchain@v1
with: with:
toolchain: stable toolchain: stable
target: ${{ matrix.target }} target: ${{ matrix.target }}
override: true override: true
- name: 🏗️ Build - name: 🏗️ Build
uses: actions-rs/cargo@v1 uses: https://github.com/actions-rs/cargo@v1
with: with:
command: build command: build
args: --release --target ${{ matrix.target }} args: --release --target ${{ matrix.target }}

View file