Skip to content

Commit

Permalink
github action
Browse files Browse the repository at this point in the history
  • Loading branch information
darioalessandro committed Jan 4, 2024
1 parent e274819 commit 22855a3
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/cut-video-daemon-dev.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: Build and Package DEB

on:
push:
branches:
- main
- add-debian-distribution
tags:
- '*'

jobs:
build_and_package:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v2

- name: Install Rust
uses: actions-rs/toolchain@v1
with:
toolchain: stable
profile: minimal
override: true

- name: Build and Create DEB Package
run: |
cargo install cargo-deb
cd video-daemon
cargo deb
- uses: actions/upload-artifact@v2
with:
name: video-daemon.deb
path: video-daemon/target/debian/*.deb

0 comments on commit 22855a3

Please sign in to comment.