-
Notifications
You must be signed in to change notification settings - Fork 0
124 lines (107 loc) · 2.96 KB
/
main.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
name: Release
on:
push:
branches:
- feat-support-windows
permissions:
contents: read
jobs:
generate-icons:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- name: Compiled icons
run: |
GOPATH=$(go env GOPATH)
export GOPATH
go get github.com/cratonica/2goarray
go install github.com/cratonica/2goarray
bash generate-icons.sh
- uses: actions/upload-artifact@v4
with:
name: icons
path: icons/*.go
windows-build:
runs-on: windows-latest
needs: [ generate-icons ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: actions/download-artifact@v4
with:
name: icons
path: icons
- run: go build -ldflags -H=windowsgui -o ipingtray.exe
- name: Set up NSIS
run: choco install nsis
- name: Create installer
run: |
cp build/windows/installer.nsi .
& "C:\Program Files (x86)\NSIS\makensis.exe" "installer.nsi"
- name: Upload installer
uses: actions/upload-artifact@v4
with:
name: iPingTray-setup.exe
path: iPingTray-setup.exe
macos-build:
runs-on: macos-13
needs: [ generate-icons ]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-go@v5
with:
go-version: '1.22'
- uses: actions/download-artifact@v4
with:
name: icons
path: icons
- run: go build -o ipingtray
- run: go install github.com/machinebox/appify@latest
- name: Create macOS app
run: |
appify -name "IPingTray" -icon docs/icon.png ipingtray
cp build/macos/Info.plist IpingTray.app/Contents/Info.plist
- name: Install create-dmg
run: brew install create-dmg
- name: Prepare DMG
run: |
mkdir dmg
mv iPingTray.app dmg/iPingTray.app
ln -s /Applications dmg/Applications
create-dmg iPingTray.dmg dmg
- name: Upload DMG artifact
uses: actions/upload-artifact@v4
with:
name: iPingTray.dmg
path: iPingTray.dmg
release:
permissions:
contents: write
issues: write
pull-requests: write
needs:
- macos-build
- windows-build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Download binaries
uses: actions/download-artifact@v4
with:
path: dist
- run: find .
- uses: actions/setup-node@v4
with:
node-version: latest
- name: "configure semantic-release"
run: npm install -D semantic-release @semantic-release/github
- name: Release
run: npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}