We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent fe2149b commit 2cef25dCopy full SHA for 2cef25d
1 file changed
.github/workflows/release_image.yml
@@ -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