change variable escaping method
Some checks failed
Continuous integration / Check (push) Failing after 16s
Continuous integration / build (push) Failing after 16s

This commit is contained in:
Eau
2026-03-18 00:02:07 -05:00
parent 3e6a73a150
commit 4e9f5b60d9

View File

@@ -13,15 +13,15 @@ jobs:
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: sudo apt-get install $APT_PACKAGES
- run: rustup target add "$TARGET_PLATFORM"
- run: cargo check --target "$TARGET_PLATFORM"
- run: sudo apt-get install ${{ env.APT_PACKAGES }}
- run: rustup target add "${{ env.TARGET_PLATFORM }}"
- run: cargo check --target "${{ env.TARGET_PLATFORM }}"
build:
name: build
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions-rust-lang/setup-rust-toolchain@v1
- run: sudo apt-get install $APT_PACKAGES
- run: rustup target add "$TARGET_PLATFORM"
- run: cargo build --target "$TARGET_PLATFORM"
- run: sudo apt-get install ${{ env.APT_PACKAGES }}
- run: rustup target add "${{ env.TARGET_PLATFORM }}"
- run: cargo build --target "${{ env.TARGET_PLATFORM }}