workflow try 3 added dependencies for tinyfileinput

This commit is contained in:
WanderingPenwing 2024-07-22 16:33:13 +02:00
parent cdf0ab5074
commit 0d94d46c8a

View file

@ -29,12 +29,19 @@ jobs:
toolchain: stable
override: true
- name: Install mingw-w64 for Windows target
if: matrix.target == 'x86_64-pc-windows-gnu'
run: sudo apt-get install mingw-w64
- name: Install musl-tools for Linux target
if: matrix.target == 'x86_64-unknown-linux-musl'
run: sudo apt-get install musl-tools
- name: Install target
run: rustup target add ${{ matrix.target }}
- name: Compile the app
run: |
cargo build --release --target ${{ matrix.target }}
run: cargo build --release --target ${{ matrix.target }}
- name: Create tarball
run: |