-
Notifications
You must be signed in to change notification settings - Fork 100
52 lines (52 loc) · 1.57 KB
/
build-desktop-tool.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
# credit: https://data-dive.com/multi-os-deployment-in-cloud-using-pyinstaller-and-github-actions
name: Desktop tool build
on:
push:
branches: [master]
workflow_dispatch:
jobs:
build:
name: Build
runs-on: ${{ matrix.os }}
defaults:
run:
working-directory: desktop-tool
strategy:
matrix:
include:
- os: macos-latest
TARGET: macos-arm
OUT_FILE_NAME: autofill
- os: macos-13
TARGET: macos-intel
OUT_FILE_NAME: autofill
- os: windows-latest
TARGET: windows
OUT_FILE_NAME: autofill.exe
- os: ubuntu-latest
TARGET: linux
OUT_FILE_NAME: autofill
steps:
- uses: actions/checkout@v4
- uses: browser-actions/setup-chrome@latest
- name: Set up Python 3.9
uses: actions/setup-python@v5
with:
python-version: 3.9
- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install -r requirements.txt
- name: Write Google Drive API credentials to file
uses: jsdaniell/[email protected]
with:
name: "client_secrets.json"
json: ${{ secrets.GOOGLE_DRIVE_API_KEY }}
dir: "desktop-tool/"
- name: Build with pyinstaller for ${{ matrix.TARGET }}
run: pyinstaller autofill.spec
- name: Upload artifact
uses: actions/upload-artifact@v4
with:
path: ./desktop-tool/dist/${{ matrix.OUT_FILE_NAME }}
name: autofill-${{ matrix.TARGET }}