Skip to content

Commit

Permalink
Rename linux-x64 binary to linux-x86_64-gnu
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Sep 14, 2024
1 parent 1815f83 commit 30333d7
Show file tree
Hide file tree
Showing 7 changed files with 205 additions and 200 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/actions.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ jobs:
include:
- platform: ubuntu-24.04
artifact-path: target/release/fend
artifact-platform-name: linux-x64
artifact-platform-name: linux-x86_64-gnu
env-command: ">> $GITHUB_ENV"
- platform: macos-14
artifact-path: target/release/fend
Expand Down
38 changes: 19 additions & 19 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion cli/Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ fend-core.workspace = true
home = "0.5.9"
rand = { version = "0.8.5", default-features = false, features = ["std", "std_rng"] }
rustyline = { version = "14.0.0", default-features = false, features = ["with-file-history", "custom-bindings"] }
serde = { version = "1.0.209", default-features = false }
serde = { version = "1.0.210", default-features = false }
toml = { version = "0.8.19", default-features = false, features = ["parse"] }
minreq = { version = "2.12.0", default-features = false, optional = true }

Expand Down
6 changes: 3 additions & 3 deletions contrib/deploy.sh
Original file line number Diff line number Diff line change
Expand Up @@ -212,8 +212,8 @@ gh run download "$GH_RUN_ID" --dir "$TMPDIR/artifacts"
echo "Zipping artifacts..."
# --junk-paths prevents directory names from being stored in the zip file,
# so the binary is stored at the top level
zip --junk-paths "$TMPDIR/artifacts/fend-$NEW_VERSION-linux-x64.zip" \
"$TMPDIR/artifacts/fend-$NEW_VERSION-linux-x64/fend"
zip --junk-paths "$TMPDIR/artifacts/fend-$NEW_VERSION-linux-x86_64-gnu.zip" \
"$TMPDIR/artifacts/fend-$NEW_VERSION-linux-x86_64-gnu/fend"
zip --junk-paths "$TMPDIR/artifacts/fend-$NEW_VERSION-linux-aarch64-gnu.zip" \
"$TMPDIR/artifacts/fend-$NEW_VERSION-linux-aarch64-gnu/fend"
zip --junk-paths "$TMPDIR/artifacts/fend-$NEW_VERSION-linux-armv7-gnueabihf.zip" \
Expand All @@ -235,7 +235,7 @@ gh release --repo printfn/fend \
create "v$NEW_VERSION" --title "Version $NEW_VERSION" \
--notes "$CHANGELOG2" \
--draft \
"$TMPDIR/artifacts/fend-$NEW_VERSION-linux-x64.zip" \
"$TMPDIR/artifacts/fend-$NEW_VERSION-linux-x86_64-gnu.zip" \
"$TMPDIR/artifacts/fend-$NEW_VERSION-linux-aarch64-gnu.zip" \
"$TMPDIR/artifacts/fend-$NEW_VERSION-linux-armv7-gnueabihf.zip" \
"$TMPDIR/artifacts/fend-$NEW_VERSION-linux-x86_64-musl.zip" \
Expand Down
Loading

0 comments on commit 30333d7

Please sign in to comment.