We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 477bbf5 commit e2418c1Copy full SHA for e2418c1
.github/workflows/build.yaml
@@ -24,6 +24,7 @@ jobs:
24
# echo -e "echo postinst" > .debpkg/DEBIAN/postinst
25
# chmod +x .debpkg/DEBIAN/postinst
26
- uses: jiro4989/build-deb-action@v3
27
+ id: build_deb
28
with:
29
package: ufw-applications
30
package_root: package
@@ -32,4 +33,11 @@ jobs:
32
33
arch: 'any'
34
depends: 'ufw'
35
desc: 'Extra UFW app profiles'
- homepage: ${{ github.server_url }}/${{ github.repository }}
36
+ homepage: ${{ github.server_url }}/${{ github.repository }}
37
+ - name: Release
38
+ uses: softprops/action-gh-release@v2
39
+ if: startsWith(github.ref, 'refs/tags/')
40
+ with:
41
+ files: ${{ steps.build_deb.outputs.file_name }}
42
+ generate_release_notes: true
43
+ make_latest: true
0 commit comments