From 2cbd5d60c46d956fcab685b448a40c1aa5f5b69f Mon Sep 17 00:00:00 2001 From: Héctor Ramón Jiménez Date: Fri, 15 Nov 2019 05:53:16 +0100 Subject: Archive `todos` binary before building `deb` pkg --- .github/workflows/build.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/build.yml b/.github/workflows/build.yml index 2538c418..804273ff 100644 --- a/.github/workflows/build.yml +++ b/.github/workflows/build.yml @@ -31,15 +31,15 @@ jobs: echo 'Type=Application' >> iced-todos.desktop - name: Build todos binary run: cargo build --verbose --release --example todos - - name: Build todos .deb package - run: cargo deb --variant todos -- --example todos - - name: Rename todos .deb package - run: mv target/debian/*.deb target/debian/iced_todos-x86_64-debian-linux-gnu.deb - name: Archive todos binary uses: actions/upload-artifact@v1 with: name: todos-x86_64-unknown-linux-gnu path: target/release/examples/todos + - name: Build todos .deb package + run: cargo deb --variant todos -- --example 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 uses: actions/upload-artifact@v1 with: -- cgit