-
-
Notifications
You must be signed in to change notification settings - Fork 16
157 lines (139 loc) Β· 4.9 KB
/
cd.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
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
name: Continuous Deployment
on:
push:
tags:
- "v*.*.*"
jobs:
changelog:
name: Generate changelog
runs-on: ubuntu-latest
outputs:
release_body: ${{ steps.git-cliff.outputs.content }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Generate a changelog
uses: orhun/git-cliff-action@v2
id: git-cliff
with:
config: cliff.toml
args: --latest --strip header
publish-binaries:
name: Publish binaries
needs: changelog
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
TARGET:
[
x86_64-linux,
x86_64-macos,
x86_64-windows,
aarch64-linux,
aarch64-macos,
aarch64-windows,
arm-linux,
riscv64-linux,
i386-linux
]
steps:
- name: Checkout the repository
uses: actions/checkout@v3
- name: Set the release version
run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV
- name: Install Zig
uses: goto-bus-stop/setup-zig@v2
with:
version: 0.12.1
- name: Show Zig version
run: |
zig version
zig env
- name: Build
run: zig build --release=safe -Dtarget=${{ matrix.TARGET }}
- name: Prepare release assets
shell: bash
run: |
mkdir -p release/man
cp {LICENSE,README.md,CHANGELOG.md} release/
cp man/* release/man
if [[ "${{ matrix.TARGET }}" = *"windows" ]]; then
cp zig-out/bin/linuxwave.exe release/
else
cp zig-out/bin/linuxwave release/
fi
mv release/ linuxwave-${{ env.RELEASE_VERSION }}/
- name: Create release artifacts
shell: bash
run: |
if [[ "${{ matrix.TARGET }}" = *"windows" ]]; then
7z a -tzip linuxwave-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.zip \
linuxwave-${{ env.RELEASE_VERSION }}/
else
tar -czvf linuxwave-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz \
linuxwave-${{ env.RELEASE_VERSION }}/
shasum -a 512 linuxwave-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz \
> linuxwave-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz.sha512
fi
- name: Sign the release
shell: bash
run: |
if [[ "${{ matrix.TARGET }}" != *"windows" ]]; then
echo "${{ secrets.GPG_RELEASE_KEY }}" | base64 --decode > private.key
echo "${{ secrets.GPG_PASSPHRASE }}" | gpg --pinentry-mode=loopback \
--passphrase-fd 0 --import private.key
echo "${{ secrets.GPG_PASSPHRASE }}" | gpg --pinentry-mode=loopback \
--passphrase-fd 0 --detach-sign \
linuxwave-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}.tar.gz
fi
- name: Upload the binary releases
uses: svenstaro/upload-release-action@v2
with:
file: linuxwave-${{ env.RELEASE_VERSION }}-${{ matrix.TARGET }}*
file_glob: true
overwrite: true
tag: ${{ github.ref }}
release_name: "Release v${{ env.RELEASE_VERSION }}"
body: ${{ needs.changelog.outputs.release_body }}
repo_token: ${{ secrets.GITHUB_TOKEN }}
publish-source:
name: Publish the source code
needs: changelog
runs-on: ubuntu-latest
steps:
- name: Checkout the repository
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: Set the release version
run: echo "RELEASE_VERSION=${GITHUB_REF:11}" >> $GITHUB_ENV
- name: Prepare source code
run: |
cd ..
zip -r v${{ env.RELEASE_VERSION }}.zip ${{ github.event.repository.name }}
tar -czvf v${{ env.RELEASE_VERSION }}.tar.gz ${{ github.event.repository.name }}
mv v${{ env.RELEASE_VERSION }}* ${{ github.event.repository.name }}
- name: Sign
shell: bash
run: |
echo "${{ secrets.GPG_RELEASE_KEY }}" | base64 --decode > private.key
echo "${{ secrets.GPG_PASSPHRASE }}" | gpg --pinentry-mode=loopback \
--passphrase-fd 0 --import private.key
for ext in 'zip' 'tar.gz'; do
echo "${{ secrets.GPG_PASSPHRASE }}" | gpg --pinentry-mode=loopback \
--passphrase-fd 0 --detach-sign \
"v${{ env.RELEASE_VERSION }}.${ext}"
done
- name: Upload the source code
uses: svenstaro/upload-release-action@v2
with:
file: v${{ env.RELEASE_VERSION }}*
file_glob: true
overwrite: true
tag: ${{ github.ref }}
release_name: "Release v${{ env.RELEASE_VERSION }}"
body: ${{ needs.changelog.outputs.release_body }}
repo_token: ${{ secrets.GITHUB_TOKEN }}