File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 44 branches : [ main ]
55
66env :
7- PKGBUILD : ../../karma_cli/PKGBUILD
8- DEBIAN_BUILD : ../../karma_cli/debian_build.sh
7+ DEBIAN_BUILD : karma_cli/debian_build.sh
98
109jobs :
1110 build-and-release :
12- runs-on : ubuntu-24
11+ runs-on : ubuntu-latest
1312 steps :
1413 - name : Checkout Repository
1514 - uses : actions/checkout@v6
1615
17- - name : Build package
18- id : makepkg
19- run : DEBIAN_BUILD
16+ - name : Install build deps
17+ run : |
18+ sudo apt-get update
19+ sudo apt-get install -y git dpkg-dev fakeroot
2020
21- - name : Release package
22- uses : softprops/action-gh-release@v2
23- with :
24- files :
25- karma-cli_*.deb
21+ - name : Show produced files
22+ run : ls -la
2623
24+ - name : Create GitHub Release and upload artifact
25+ uses : softprops/action-gh-release@v2
26+ with :
27+ files : |
28+ ./karma-cli_*.deb
29+ tag_name : release-${{ github.run_number }}
30+ env :
31+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
You can’t perform that action at this time.
0 commit comments