Apple Music decryption tool, based on zhaarey/apple-music-alac-atmos-downloader
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
AppleMusicDecrypt/.github/workflows/main.yml

34 lines
1017 B

5 months ago
on:
push:
branches:
5 months ago
- master
5 months ago
jobs:
build_winodws:
name: Build Windows Version
runs-on: windows-latest
steps:
5 months ago
- uses: actions/checkout@v4
5 months ago
- name: Set up Python
5 months ago
uses: actions/setup-python@v5
5 months ago
with:
python-version: 3.11
architecture: x64
- name: Install dependencies
run: |
5 months ago
python -m pip install poetry
poetry install
poetry run python -m pip install nuitka
5 months ago
- name: Build
run: |
5 months ago
poetry run python -m nuitka main.py --assume-yes-for-downloads --standalone --follow-imports --include-data-dir=assets=assets --include-data-files=config.toml=config.toml --include-data-files=agent.js=agent.js --include-module=mitmproxy_windows
5 months ago
- name: Rename
5 months ago
run: |
5 months ago
ren main.dist AppleMusicDecrypt
5 months ago
- name: Upload CLI artifact
5 months ago
uses: actions/upload-artifact@v4
5 months ago
with:
name: AppleMusicDecrypt-Windows
5 months ago
path: AppleMusicDecrypt
5 months ago