workflow try 3 added dependencies for tinyfileinput
This commit is contained in:
parent
cdf0ab5074
commit
0d94d46c8a
11
.github/workflows/release.yml
vendored
11
.github/workflows/release.yml
vendored
|
@ -29,12 +29,19 @@ jobs:
|
||||||
toolchain: stable
|
toolchain: stable
|
||||||
override: true
|
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
|
- name: Install target
|
||||||
run: rustup target add ${{ matrix.target }}
|
run: rustup target add ${{ matrix.target }}
|
||||||
|
|
||||||
- name: Compile the app
|
- name: Compile the app
|
||||||
run: |
|
run: cargo build --release --target ${{ matrix.target }}
|
||||||
cargo build --release --target ${{ matrix.target }}
|
|
||||||
|
|
||||||
- name: Create tarball
|
- name: Create tarball
|
||||||
run: |
|
run: |
|
||||||
|
|
Loading…
Reference in a new issue