File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Release
2+
3+ on :
4+ release :
5+ types : [ created ]
6+
7+ jobs :
8+ generate :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v2
12+
13+ # Build .deb file
14+ - uses : ./.github/actions/build-deb
15+ id : debian
16+ name : Debian Package
17+ with :
18+ args : --unsigned-source --unsigned-changes --no-sign
19+
20+ # Build .pkg.tar.xz file
21+ - uses : ./.github/actions/build-arch
22+ name : ArchLinux Package
23+ id : arch
24+
25+ # Build NSIS file
26+ - uses : ./.github/actions/build-nsis
27+ name : Windows Package
28+ id : windows
29+
30+ # Publish artifacts to github tag.
31+ - name : Publish to Github
32+ uses : skx/github-action-publish-binaries@master
33+ env :
34+ GITHUB_TOKEN : ${{ secrets.GITHUB_TOKEN }}
35+ with :
36+ args : ' ${{ steps.debian.outputs.filename }} ${{ steps.arch.outputs.filename }} ${{ steps.windows.outputs.filename }}'
You can’t perform that action at this time.
0 commit comments