Skip to content

Commit 221259d

Browse files
committed
remove set ouput
1 parent 6d1af82 commit 221259d

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

.github/workflows/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
matrix:
1414
BUILD_TARGET: [release] # refers to a cargo profile
1515
outputs:
16-
release_built: ${{ steps.set-output.outputs.release_built }}
16+
release_built: ${{ steps.build.outputs.release_built }}
1717
steps:
1818
- uses: actions/checkout@v4
1919
- name: Build binaries in "${{ matrix.BUILD_TARGET }}" mode

Cargo.toml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,8 +8,8 @@ opt-level = 1
88
overflow-checks = false
99

1010
[profile.release]
11-
opt-level = 1
12-
overflow-checks = false
13-
strip = "debuginfo"
11+
opt-level = 3
12+
strip = true
13+
lto = true # Link-time optimizations for smaller and faster binaries
1414

1515
[dependencies]

0 commit comments

Comments
 (0)