diff options
author | 2019-11-15 05:53:16 +0100 | |
---|---|---|
committer | 2019-11-15 05:53:16 +0100 | |
commit | 2cbd5d60c46d956fcab685b448a40c1aa5f5b69f (patch) | |
tree | 1d8eb7aec7ab0bfddea6cd38acf139fd74c214e7 | |
parent | 5f87d3d7a54494156c78a91f1a5607bba1d30d85 (diff) | |
download | iced-2cbd5d60c46d956fcab685b448a40c1aa5f5b69f.tar.gz iced-2cbd5d60c46d956fcab685b448a40c1aa5f5b69f.tar.bz2 iced-2cbd5d60c46d956fcab685b448a40c1aa5f5b69f.zip |
Archive `todos` binary before building `deb` pkg
-rw-r--r-- | .github/workflows/build.yml | 8 |
1 files 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: |