Version 1.1.1 #10
Workflow file for this run
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 & Deploy | |
on: | |
release: | |
types: [published] | |
jobs: | |
build-and-deploy-python-package: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: '3.8' | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
python -m pip install build | |
python -m pip install twine | |
pip install -r requirements.txt | |
- name: Build Package | |
run: python -m build | |
- name: Publish Package | |
run: python3 -m twine upload dist/* --verbose | |
env: | |
TWINE_USERNAME: __token__ | |
TWINE_PASSWORD: ${{secrets.PYPI_API_TOKEN}} | |
build-desktop-app: | |
runs-on: windows-latest | |
needs: build-and-deploy-python-package | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node.js | |
uses: actions/setup-node@v1 | |
with: | |
node-version: '18' | |
- name: Install dependencies | |
run: npm install | |
working-directory: ./application | |
- name: Package Webpack | |
run: npm run package | |
working-directory: ./application | |
- name: Build Installer | |
run: npm run make-installer:win | |
working-directory: ./application | |
env: | |
GH_TOKEN: ${{secrets.GITHUB_TOKEN}} | |
- name: Rename Installer | |
run: mv "dist/Keyboard Sounds Setup *.exe" "dist/Keyboard-Sounds-Setup-windows-x64.exe" | |
working-directory: ./application | |
- name: Rename Blockmap | |
run: mv "dist/Keyboard Sounds Setup *.exe.blockmap" "dist/Keyboard-Sounds-Setup-windows-x64.exe.blockmap" | |
working-directory: ./application | |
- name: Upload Artifacts | |
uses: softprops/action-gh-release@v2 | |
with: | |
files: | | |
application/dist/Keyboard-Sounds-Setup-windows-x64.exe | |
application/dist/Keyboard-Sounds-Setup-windows-x64.exe.blockmap |