Merge pull request #21 from Yoween/integration #7
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build with Briefcase | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
build: | |
runs-on: windows-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v4 | |
with: | |
python-version: '3.x' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install briefcase | |
- name: Build with Briefcase | |
run: briefcase create windows && briefcase build windows && briefcase package windows | |
- name: Upload installer as an artifact | |
uses: actions/upload-artifact@v2 | |
with: | |
name: installer | |
path: dist/Spotify2YTMusic-*.msi |