Skip to content

Commit

Permalink
Release statically linked binaries on windows and linux
Browse files Browse the repository at this point in the history
  • Loading branch information
rphlo committed Jun 3, 2024
1 parent 627f4f3 commit f311613
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/linux-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
shell: bash
run: |
cargo clean
cargo build --release
RUSTFLAGS='-C target-feature=+crt-static' cargo build --release --target x86_64-unknown-linux-gnu
- run: cp target/release/rusty-pullauta .
- run: cp target/x86_64-unknown-linux-gnu/release/rusty-pullauta .

- name: 'Compress binaries'
if: true
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/windows-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,9 @@ jobs:
shell: bash
run: |
cargo clean
cargo build --release
RUSTFLAGS='-C target-feature=+crt-static' cargo build --release --target x86_64-pc-windows-msvc
- run: copy target/release/rusty-pullauta.exe .
- run: copy target/x86_64-pc-windows-msvc/release/rusty-pullauta.exe .

- name: 'Compress binaries'
if: true
Expand Down

0 comments on commit f311613

Please sign in to comment.