-
Notifications
You must be signed in to change notification settings - Fork 4
138 lines (127 loc) · 5.33 KB
/
on-release.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
125
126
127
128
129
130
131
132
133
134
135
136
137
138
name: On release
on:
release:
types: [created]
jobs:
upload-release-asset:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm ci
- name: Build standalone apps
run: |
npx pkg . -t linux,macos --compress GZip
cd ./dist
cp -f heta-compiler-linux heta-compiler
chmod 775 heta-compiler
tar -czvf ./heta-compiler-linux.tar.gz ./heta-compiler
cp -f heta-compiler-macos heta-compiler
chmod 775 heta-compiler
tar -czvf ./heta-compiler-macos.tar.gz ./heta-compiler
cd ..
- name: Upload Release Asset Linux
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: dist/heta-compiler-linux
asset_name: heta-compiler-linux-x64
asset_content_type: application/octet-stream
- name: Upload Release Asset Macos
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: dist/heta-compiler-macos
asset_name: heta-compiler-macos-x64
asset_content_type: application/octet-stream
- name: Upload Release TAR.GZ Linux
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: dist/heta-compiler-linux.tar.gz
asset_name: heta-compiler-linux.tar.gz
asset_content_type: application/octet-stream
- name: Upload Release TAR.GZ Macos
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: dist/heta-compiler-macos.tar.gz
asset_name: heta-compiler-macos.tar.gz
asset_content_type: application/octet-stream
upload-windows-release-asset:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18.x
- run: npm ci
- name: Build standalone apps
run: |
npx pkg . -t win --compress GZip
cd ./dist
cp -Force heta-compiler-win.exe heta-compiler.exe
tar -czvf ./heta-compiler-windows.tar.gz ./heta-compiler.exe
cd ..
- name: Get package version
id: package_version
run: | # deprecated
$version = node -p "require('./package.json').version"
echo "::set-output name=VERSION::$version"
- name: Install WiX Toolset
run: |
choco install wixtoolset
- name: Generate new GUID
id: new_guid
run: | # deprecated
$guid = [guid]::NewGuid().ToString().ToUpper()
echo "::set-output name=NewGUID::$guid"
- name: Update .wxs file with new Product Id
run: |
echo "GUID: ${{ steps.new_guid.outputs.NewGUID }}"
$pathToWxs = "build-win-installer/perUser.wxs"
$content = Get-Content $pathToWxs -Raw
$newContent1 = $content -replace '(?<=Product\s+Id=")[^"]*', "${{ steps.new_guid.outputs.NewGUID }}"
$newContent2 = $newContent1 -replace '(?<=Version\s*=\s*")0\.0\.0', "${{ steps.package_version.outputs.VERSION }}"
$newContent2 | Set-Content $pathToWxs
- name: Build windows installer
run: |
& ${env:WIX}bin\candle.exe -o dist/ build-win-installer/perUser.wxs
& ${env:WIX}bin\light.exe -o dist/heta-compiler-win-x64-installer.msi dist/perUser.wixobj -ext WixUIExtension
- name: Upload Release Asset Win MSI
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }} # part of the GitHub Actions context
asset_path: dist/heta-compiler-win-x64-installer.msi
asset_name: heta-compiler-${{ steps.package_version.outputs.VERSION }}-win-x64-installer.msi
asset_content_type: application/octet-stream
- name: Upload Release Asset Win EXE
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: dist/heta-compiler-win.exe
asset_name: heta-compiler-win-x64.exe
asset_content_type: application/octet-stream
- name: Upload Release TAR.GZ Windows
uses: actions/upload-release-asset@v1
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
upload_url: ${{ github.event.release.upload_url }}
asset_path: dist/heta-compiler-windows.tar.gz
asset_name: heta-compiler-windows.tar.gz
asset_content_type: application/octet-stream