Bump briefcase from 0.3.14 to 0.3.26 #14
This file contains hidden or 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 | |
| on: [push] | |
| jobs: | |
| Windows-Build: | |
| runs-on: windows-latest | |
| steps: | |
| - name: Sync Repository | |
| uses: actions/checkout@v3 | |
| - name: Install Python | |
| uses: actions/setup-python@v4 | |
| with: | |
| python-version: "3.11" | |
| cache: "pip" | |
| - name: Install Libraries | |
| run: | | |
| pip install -r .\requirements-dev.txt | |
| briefcase build -r | |
| briefcase package | |
| - name: Save Compiled Files | |
| uses: actions/upload-artifact@v3 | |
| with: | |
| name: build_files_windows | |
| path: dist |