-
Notifications
You must be signed in to change notification settings - Fork 36
33 lines (31 loc) · 1 KB
/
main.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
on:
push:
branches:
- master
jobs:
build_winodws:
name: Build Windows Version
runs-on: windows-latest
steps:
- uses: actions/checkout@v4
- name: Set up Python
uses: actions/setup-python@v5
with:
python-version: 3.11
architecture: x64
- name: Install dependencies
run: |
python -m pip install poetry
poetry install
poetry run python -m pip install nuitka
- name: Build
run: |
poetry run python -m nuitka main.py --assume-yes-for-downloads --standalone --follow-imports --include-data-dir=assets=assets --include-data-files=config.example.toml=config.toml --include-data-files=agent.js=agent.js --include-module=mitmproxy_windows
- name: Rename
run: |
ren main.dist AppleMusicDecrypt
- name: Upload CLI artifact
uses: actions/upload-artifact@v4
with:
name: AppleMusicDecrypt-Windows
path: AppleMusicDecrypt