diff options
author | 2022-07-14 19:11:25 +0200 | |
---|---|---|
committer | 2022-07-14 19:11:25 +0200 | |
commit | 2883aa31bb8133813e92d3fb83d122ab8719364a (patch) | |
tree | 2c3b8161d4afcab0efd393a950ebda79bdb744f9 /.github | |
parent | 34b691fdd454823e9c713fe8480b63519c3186c2 (diff) | |
download | iced-2883aa31bb8133813e92d3fb83d122ab8719364a.tar.gz iced-2883aa31bb8133813e92d3fb83d122ab8719364a.tar.bz2 iced-2883aa31bb8133813e92d3fb83d122ab8719364a.zip |
Use proper profile for `cargo-deb` in `build` workflow
Diffstat (limited to '')
-rw-r--r-- | .github/workflows/build.yml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 6ccf1d9a..b30b7a61 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -24,7 +24,7 @@ jobs: name: todos-x86_64-unknown-linux-gnu path: target/release-opt/todos - name: Pack todos .deb package - run: cargo deb --no-build --package todos + run: cargo deb --no-build --profile release-opt --package todos - name: Rename todos .deb package run: mv target/debian/*.deb target/debian/iced_todos-x86_64-debian-linux-gnu.deb - name: Archive todos .deb package |