diff options
Diffstat (limited to '.github/workflows/build.yml')
-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: |