-
-
Notifications
You must be signed in to change notification settings - Fork 1
298 lines (242 loc) · 10.4 KB
/
release_github.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
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
name: release_github
on:
workflow_dispatch:
inputs:
release:
description: 'Release after build'
required: true
default: 'no'
push:
tags:
- "v[0-9]+.[0-9]+.[0-9]+"
env:
BUILD_PYTHON_VERSION: 3.8
BUILD_POETRY_VERSION: 1.4
PACKAGE_NAME: csv2notion_neo
jobs:
build_python:
runs-on: ubuntu-latest
env:
POETRY_VIRTUALENVS_CREATE: false
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Set up Python ${{ env.BUILD_PYTHON_VERSION }}
uses: actions/setup-python@v5
with:
python-version: ${{ env.BUILD_PYTHON_VERSION }}
- name: Set up Poetry ${{ env.BUILD_POETRY_VERSION }}
uses: abatilo/[email protected]
with:
poetry-version: ${{ env.BUILD_POETRY_VERSION }}
- name: Export requirements
run: poetry export --without-hashes -f requirements.txt --output requirements.txt
- name: Build project for distribution
run: poetry build
- name: Save release python requirements
uses: actions/upload-artifact@v4
with:
name: release_dist_reqs
path: requirements.txt
- name: Save release python packages
uses: actions/upload-artifact@v4
with:
name: release_dist_python
path: dist
build_binaries:
needs: build_python
runs-on: ${{ matrix.os }}
strategy:
matrix:
include:
- os: macos-latest
OS_CODE: macos
- os: ubuntu-latest
OS_CODE: linux
- os: windows-latest
OS_CODE: win
steps:
- uses: actions/checkout@v4
- name: Get version
if: matrix.os == 'macos-latest'
shell: bash
run: |
APP_VERSION=$(perl -n -e'/^__version__ = "([^"]+)"$/ && print $1' ${{ env.PACKAGE_NAME }}/version.py)
echo "APP_VERSION=$APP_VERSION" >> $GITHUB_ENV
- name: Get version
if: matrix.os != 'macos-latest'
shell: bash
run: |
APP_VERSION=$(sed -n 's/^__version__ = "\([^"]\+\)"$/\1/p' ${{ env.PACKAGE_NAME }}/version.py)
echo "APP_VERSION=$APP_VERSION" >> $GITHUB_ENV
- name: Load release python requirements
uses: actions/download-artifact@v4
with:
name: release_dist_reqs
- name: Set up Python ${{ env.BUILD_PYTHON_VERSION }}
uses: actions/setup-python@v5
env:
PIP_DISABLE_PIP_VERSION_CHECK: 1
with:
python-version: ${{ env.BUILD_PYTHON_VERSION }}
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install pyinstaller
pip install -r requirements.txt
- name: Build with pyinstaller
run: pyinstaller ${{ env.PACKAGE_NAME }}.spec
- name: Make directory for bins
run: mkdir dist_bin
- name: Copy LICENSE file
run: |
cp ./LICENSE ./dist_bin/LICENSE
if: success()
- name: Pack up binary for macos
if: matrix.os == 'macos-latest'
env:
APPLE_CERT_DATA: ${{ secrets.APPLE_CERT_DATA }}
APPLE_CERT_PASSWORD: ${{ secrets.APPLE_CERT_PASSWORD }}
KEYCHAIN_PASSWORD: ${{ secrets.KEYCHAIN_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
APPLE_DEV_ID: ${{ secrets.APPLE_DEV_ID }}
APPLE_DEV_ID_PASSWORD: ${{ secrets.APPLE_DEV_ID_PASSWORD }}
run: |
mkdir -p dist
PARENT=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
mkdir -p "$PARENT/dist/bin"
cp -R ./dist/${{ env.PACKAGE_NAME }} "$PARENT/dist/bin"
cp -R ./bin/entitlements.plist "$PARENT/dist/bin"
APP="$PARENT/dist/bin/${{ env.PACKAGE_NAME }}"
ENTITLE="$PARENT/dist/bin/entitlements.plist"
ls -l "$PARENT/dist/bin"
echo $APPLE_CERT_DATA | base64 --decode > certificate.p12
security create-keychain -p $KEYCHAIN_PASSWORD build.keychain
security default-keychain -s build.keychain
security unlock-keychain -p $KEYCHAIN_PASSWORD build.keychain
security import certificate.p12 -k build.keychain -P $APPLE_CERT_PASSWORD -T /usr/bin/codesign
security set-key-partition-list -S apple-tool:,apple:,codesign: -s -k $KEYCHAIN_PASSWORD build.keychain
chmod +x "$ENTITLE"
/usr/bin/codesign --force -s $APPLE_TEAM_ID --identifier "co.theacharya.CSV2Notion-Neo" --options runtime --entitlements "$ENTITLE" "$APP" -v
echo "Create Keychain Profile"
xcrun notarytool store-credentials "notarytool-profile" --apple-id $APPLE_DEV_ID --password $APPLE_DEV_ID_PASSWORD --team-id $APPLE_TEAM_ID
echo "Creating Temp Notarization Archive"
ditto -c -k --keepParent "$APP" "csv2notion_neo.zip"
echo "Notarize App"
xcrun notarytool submit "csv2notion_neo.zip" --keychain-profile "notarytool-profile" --progress --wait
cp -R "$PARENT/dist/bin/${{ env.PACKAGE_NAME }}" dist/
cp -R ./bin/entitlements.plist dist/
cp ./LICENSE dist/
zip -q -r dist_bin/bin_${{ env.PACKAGE_NAME }}_${{ env.APP_VERSION }}_${{ matrix.OS_CODE }}_x64.zip "dist/"
- name: Create pkg and productsign it
if: matrix.os == 'macos-latest'
env:
APPLE_INSTALL_CERT_DATA: ${{ secrets.APPLE_INSTALL_CERT_DATA }}
APPLE_INSTALL_CERT_PASSWORD: ${{ secrets.APPLE_INSTALL_CERT_PASSWORD }}
KEYCHAIN_PASSWORD_IN: ${{ secrets.KEYCHAIN_PASSWORD_IN }}
APPLE_TEAM_ID_INSTALL: ${{ secrets.APPLE_TEAM_ID_INSTALL }}
APPLE_DEV_ID: ${{ secrets.APPLE_DEV_ID }}
APPLE_DEV_ID_PASSWORD: ${{ secrets.APPLE_DEV_ID_PASSWORD }}
APPLE_TEAM_ID: ${{ secrets.APPLE_TEAM_ID }}
run: |
PARENT=$( cd "$(dirname "${BASH_SOURCE[0]}")" ; pwd -P )
BINARY_PATH="$PARENT/dist/bin/${{ env.PACKAGE_NAME }}"
PKG_IDENTIFIER="co.theacharya.CSV2Notion-Neo"
INSTALL_LOCATION="/usr/local/bin"
PACKAGE_NAME="CSV2Notion-Neo-unsigned"
OUTPUT_DIR="$PARENT/dist/pkg-build"
VERSION=${{ env.APP_VERSION }}
echo "Creating Temp Dir"
TMP_DIR="$OUTPUT_DIR/tmp_pkgbuild"
mkdir -p "$TMP_DIR"
cp "$BINARY_PATH" "$TMP_DIR/$(basename "$BINARY_PATH")"
echo "Running Creating PKG"
pkgbuild --root "$TMP_DIR" --identifier "$PKG_IDENTIFIER" --version "$VERSION" --install-location "$INSTALL_LOCATION" "$OUTPUT_DIR/$PACKAGE_NAME.pkg"
echo "Checking pkg files..."
ls -l "$PARENT/dist/pkg-build"
PKG="$PARENT/dist/pkg-build/CSV2Notion-Neo-unsigned.pkg"
SPKG="$PARENT/dist/pkg-build/CSV2Notion-Neo_${{env.APP_VERSION}}.pkg"
SIGNING_IDENTITY="$APPLE_TEAM_ID_INSTALL"
echo "sign pkg"
echo $APPLE_INSTALL_CERT_DATA | base64 --decode > certificate.p12
security create-keychain -p $KEYCHAIN_PASSWORD_IN build-i.keychain
security default-keychain -s build-i.keychain
security unlock-keychain -p $KEYCHAIN_PASSWORD_IN build-i.keychain
security import certificate.p12 -k build-i.keychain -P $APPLE_INSTALL_CERT_PASSWORD -T /usr/bin/productsign
security set-key-partition-list -S apple-tool:,apple:,productsign: -s -k $KEYCHAIN_PASSWORD_IN build-i.keychain
/usr/bin/productsign --sign "$SIGNING_IDENTITY" "$PKG" "$SPKG"
SPKG="$PARENT/dist/pkg-build/CSV2Notion-Neo_${{env.APP_VERSION}}.pkg"
echo "SPKG=$SPKG" >> $GITHUB_ENV
echo "Create Keychain Profile"
xcrun notarytool store-credentials "notarytool-profile" --apple-id $APPLE_DEV_ID --password $APPLE_DEV_ID_PASSWORD --team-id $APPLE_TEAM_ID
echo "Notarize csv2notion_neo PKG"
xcrun notarytool submit "$SPKG" --keychain-profile "notarytool-profile" --progress --wait
echo "Attach staple"
xcrun stapler staple "$SPKG"
cp "$SPKG" "dist/"
ls "dist"
rm -rf "$TMP_DIR"
- name: Pack up binary for linux
if: matrix.os == 'ubuntu-latest'
run: |
cp ./LICENSE ./dist
tar -zcvf dist_bin/bin_${{ env.PACKAGE_NAME }}_${{ env.APP_VERSION }}_${{ matrix.OS_CODE }}_x64.tar.gz -C ./dist .
- name: Pack up binary for windows
if: matrix.os == 'windows-latest'
run: |
choco install zip
copy ./LICENSE dist/
zip -q -r dist_bin/bin_${{ env.PACKAGE_NAME }}_${{ env.APP_VERSION }}_${{ matrix.OS_CODE }}_x64.zip "dist/"
- name: Save release binaries for ${{ matrix.OS_CODE }}
uses: actions/upload-artifact@v4
with:
name: release_dist_bin_${{ matrix.OS_CODE }}
path: dist_bin
- name: Save release binaries for macos
if: matrix.os == 'macos-latest'
uses: actions/upload-artifact@v4
with:
name: release_csv2notion_neo_pkg
path: ${{ env.SPKG }}
release:
if: github.event_name == 'push' || github.event.inputs.release == 'yes'
needs: [build_binaries]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Get tag version
run: |
APP_VERSION=$(sed -n 's/^__version__ = "\([^"]\+\)"$/\1/p' ${{ env.PACKAGE_NAME }}/version.py)
echo "TAG_VERSION=v$APP_VERSION" >> $GITHUB_ENV
- name: Load release python packages
uses: actions/download-artifact@v4
with:
name: release_dist_python
path: dist
- name: Load release binaries for linux
uses: actions/download-artifact@v4
with:
name: release_dist_bin_linux
path: dist
- name: Load release binaries for windows
uses: actions/download-artifact@v4
with:
name: release_dist_bin_win
path: dist
- name: Load release binaries for macos
uses: actions/download-artifact@v4
with:
name: release_dist_bin_macos
path: dist
- name: Load release pkg
uses: actions/download-artifact@v4
with:
name: release_csv2notion_neo_pkg
path: dist
- name: Create Release
uses: ncipollo/release-action@v1
with:
artifacts: "dist/*"
token: ${{ secrets.GITHUB_TOKEN }}
tag: ${{ env.TAG_VERSION }}
draft: true