-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
buj
committed
Aug 25, 2024
1 parent
6ea3bef
commit b024198
Showing
1 changed file
with
7 additions
and
7 deletions.
There are no files selected for viewing
This file contains 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -42,16 +42,16 @@ jobs: | |
- name: Install i586-unknown-linux-gnu toolchain | ||
run: rustup target add i586-unknown-linux-gnu | ||
- name: Build for i586-unknown-linux-gnu | ||
run: cargo build --verbose --release --target i586-unknown-linux-gnu | ||
run: cargo build --verbose --release --target i586-unknown-linux-gnu --no-default-features --features minreq | ||
- name: Copy i586-unknown-linux-gnu artifact | ||
run: cp target/i586-unknown-linux-gnu/release/discord-backup-util target/github-release/discord-backup-util.i586-unknown-linux-gnu | ||
|
||
- name: Install i586-unknown-linux-musl toolchain | ||
run: rustup target add i586-unknown-linux-musl | ||
- name: Build for i586-unknown-linux-musl | ||
run: cargo build --verbose --release --target i586-unknown-linux-musl | ||
- name: Copy i586-unknown-linux-musl artifact | ||
run: cp target/i586-unknown-linux-musl/release/discord-backup-util target/github-release/discord-backup-util.i586-unknown-linux-musl | ||
- name: Install i686-unknown-linux-gnu toolchain | ||
run: rustup target add i686-unknown-linux-gnu | ||
- name: Build for i686-unknown-linux-gnu | ||
run: cargo build --verbose --release --target i686-unknown-linux-gnu | ||
- name: Copy i686-unknown-linux-gnu artifact | ||
run: cp target/i686-unknown-linux-gnu/release/discord-backup-util target/github-release/discord-backup-util.i686-unknown-linux-gnu | ||
|
||
- uses: colathro/[email protected] | ||
id: crate-version | ||
|