Skip to content

Commit 4a8a767

Browse files
committed
Avoid recompilation when building deb packages
1 parent 0fbfe64 commit 4a8a767

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -27,9 +27,9 @@ jobs:
2727
- name: Build Debian packages
2828
shell: bash
2929
run: |
30-
cargo deb -p mithril-aggregator
31-
cargo deb -p mithril-signer
32-
cargo deb -p mithril-client
30+
cargo deb --no-build -p mithril-aggregator
31+
cargo deb --no-build -p mithril-signer
32+
cargo deb --no-build -p mithril-client
3333
3434
- name: Publish Debian packages
3535
uses: actions/upload-artifact@v3
@@ -45,7 +45,6 @@ jobs:
4545
path: target/release/mithril-end-to-end
4646
if-no-files-found: error
4747

48-
4948
build:
5049
strategy:
5150
fail-fast: false

0 commit comments

Comments
 (0)