Skip to content

Commit

Permalink
CI/CD: add reset path
Browse files Browse the repository at this point in the history
  • Loading branch information
DashieTM committed Jun 6, 2024
1 parent 289eae7 commit 9479a71
Showing 1 changed file with 5 additions and 3 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,14 +21,16 @@ jobs:
run: |
cd keyboard_plugin
mkdir -p ./debian/usr
mkdir -p ./debian/usr/lib
cp ./target/release/libreset_keyboard_plugin.so ./debian/usr/lib/.
mkdir -p ./debian/usr/lib.
mkdir -p ./debian/usr/lib/reset
cp ./target/release/libreset_keyboard_plugin.so ./debian/usr/lib/reset/.
dpkg-deb --build debian
mv debian.deb keyboard_plugin.deb
cd ../monitors
mkdir -p ./debian/usr
mkdir -p ./debian/usr/lib
cp ./target/release/libreset_monitors.so ./debian/usr/lib/.
mkdir -p ./debian/usr/lib/reset
cp ./target/release/libreset_monitors.so ./debian/usr/lib/reset/.
dpkg-deb --build debian
mv debian.deb monitor_plugin.deb
- name: Release
Expand Down

0 comments on commit 9479a71

Please sign in to comment.