Skip to content

Commit 2cef25d

Browse files
committed
Added first version of github action for karma-cli
1 parent fe2149b commit 2cef25d

File tree

1 file changed

+26
-0
lines changed

1 file changed

+26
-0
lines changed
Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
1+
name: Release karma_cli
2+
on:
3+
push:
4+
branches: [ main ]
5+
6+
env:
7+
PKGBUILD: ../../karma_cli/PKGBUILD
8+
DEBIAN_BUILD: ../../karma_cli/debian_build.sh
9+
10+
jobs:
11+
build-and-release:
12+
runs-on: ubuntu-24
13+
steps:
14+
- name: Checkout Repository
15+
- uses: actions/checkout@v6
16+
17+
- name: Build package
18+
id: makepkg
19+
run: DEBIAN_BUILD
20+
21+
- name: Release package
22+
uses: softprops/action-gh-release@v2
23+
with:
24+
files:
25+
karma-cli_*.deb
26+

0 commit comments

Comments
 (0)