This repository was archived by the owner on Jun 17, 2025. It is now read-only.
Fix missing format parameter #23
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| on: | |
| push: | |
| paths-ignore: | |
| - "**.md" | |
| - "**.ftl" | |
| branches: | |
| - master | |
| env: | |
| CARGO_TERM_COLOR: always | |
| CARGO_TARGET_X86_64_UNKNOWN_LINUX_GNU_LINKER: clang | |
| RUSTFLAGS: "--cfg tokio_unstable -Clink-arg=-fuse-ld=mold -Zshare-generics=y" | |
| name: Build executable | |
| jobs: | |
| build: | |
| name: Build binary | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: rui314/setup-mold@v1 | |
| - uses: actions-rust-lang/setup-rust-toolchain@v1 | |
| with: | |
| target: x86_64-unknown-linux-gnu | |
| toolchain: nightly | |
| - name: Build | |
| run: cargo build --release --target x86_64-unknown-linux-gnu | |
| - name: Upload artifact | |
| uses: actions/upload-artifact@v4 | |
| with: | |
| name: scripty_v2-x86_64-unknown-linux-gnu | |
| path: target/x86_64-unknown-linux-gnu/release/scripty_v2 |