-
Notifications
You must be signed in to change notification settings - Fork 0
79 lines (66 loc) · 1.95 KB
/
release.yml
File metadata and controls
79 lines (66 loc) · 1.95 KB
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
name: Release
on:
push:
tags:
- 'v*'
permissions:
contents: write
jobs:
build:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js 20
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: Install dependencies
run: npm ci
- name: Build installers
run: npm run make
- name: Generate latest.yml for auto-updater
shell: bash
run: |
VERSION=${GITHUB_REF_NAME#v}
SETUP_EXE=$(find out/make -name "*.exe" | head -1)
SETUP_NAME=$(basename "$SETUP_EXE")
SHA512=$(sha512sum "$SETUP_EXE" | awk '{print $1}')
SIZE=$(stat -c%s "$SETUP_EXE")
# GitHub replaces spaces with dots in release asset names
ASSET_NAME="${SETUP_NAME// /.}"
cat > out/make/latest.yml << EOF
version: ${VERSION}
files:
- url: ${ASSET_NAME}
sha512: ${SHA512}
size: ${SIZE}
path: ${ASSET_NAME}
sha512: ${SHA512}
releaseDate: $(date -u +"%Y-%m-%dT%H:%M:%S.000Z")
EOF
# Remove leading whitespace from heredoc
sed -i 's/^ //' out/make/latest.yml
echo "--- latest.yml ---"
cat out/make/latest.yml
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: release-artifacts
path: |
out/make/**/*.exe
out/make/**/*.zip
out/make/**/*.nupkg
out/make/latest.yml
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
generate_release_notes: true
files: |
out/make/**/*.exe
out/make/**/*.zip
out/make/**/*.nupkg
out/make/**/RELEASES
out/make/latest.yml
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}