blob: 71a1bd2f6bbb4b79edfa7e04b98a25e2b39c2627 (
plain)
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
|
# .github/workflows/release.yml
name: Release (Linux tarball + Windows zip)
on:
push:
tags:
- "v*.*.*"
permissions:
contents: write
jobs:
build-linux:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
targets: x86_64-unknown-linux-musl
- name: Install musl tools
run: |
sudo apt-get update
sudo apt-get install -y musl-tools
- name: Build tarball
run: make tarball
- name: Upload artifact (Linux)
uses: actions/upload-artifact@v4
with:
name: linux-dist
path: |
dist/*.tar.gz
dist/*.buildinfo
dist/*.sha256
if-no-files-found: error
build-windows:
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- uses: dtolnay/rust-toolchain@stable
with:
toolchain: stable
- name: Download WinDivert-2.2.2 and unzip
shell: pwsh
run: |
Invoke-WebRequest -Uri "https://reqrypt.org/download/WinDivert-2.2.2-A.zip" -OutFile WinDivert.zip
Expand-Archive -Path WinDivert.zip -DestinationPath .\
Remove-Item .\WinDivert.zip
- name: Run PowerShell build
shell: pwsh
run: ./build.ps1 zipball
- name: Upload artifact (Windows)
uses: actions/upload-artifact@v4
with:
name: windows-dist
path: |
dist/*.zip
dist/*.buildinfo
dist/*.sha256
if-no-files-found: error
release:
runs-on: ubuntu-latest
needs: [build-linux, build-windows]
steps:
- name: Download Linux artifacts
uses: actions/download-artifact@v4
with:
name: linux-dist
path: upload
- name: Download Windows artifacts
uses: actions/download-artifact@v4
with:
name: windows-dist
path: upload
- name: Generate base release note from github api
run: |
gh api repos/${{ github.repository }}/releases/generate-notes \
-f tag_name=${{ github.ref_name }} \
-q .body > auto_notes.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Format download link
run: |
{
echo "## Downloads"
for f in upload/*.{tar.gz,zip}; do
[ -e "$f" ] || continue
base=$(basename "$f")
echo "- [$base](https://github.com/${{ github.repository }}/releases/download/${{ github.ref_name }}/$base)"
done
} >> auto_notes.md
- name: Format and append buildinfo
run: |
{
echo "<details>"
echo "<summary>Build Info</summary>"
echo
shopt -s nullglob
files=(upload/*.buildinfo)
for f in "${files[@]}"; do
echo ""
echo "### $(basename "$f")"
while IFS=: read -r key value; do
key=$(echo "$key" | xargs)
value=$(echo "$value" | xargs)
echo "- **$key**: $value"
done < "$f"
done
echo "</details>"
} >> auto_notes.md
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
- name: Create GitHub Release
uses: softprops/action-gh-release@v2
with:
body_path: auto_notes.md
prerelease: ${{ contains(github.ref_name, '-') }}
files: |
upload/*.tar.gz
upload/*.zip
upload/*.sha256
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|