Skip to content

Commit

Permalink
Merge pull request #12 from nathan-fiscaletti/dev
Browse files Browse the repository at this point in the history
Application v1.0.6, Backend v5.8.0
  • Loading branch information
nathan-fiscaletti authored Jul 15, 2024
2 parents f4982fc + 5f58f56 commit 0e2995c
Show file tree
Hide file tree
Showing 4 changed files with 28 additions and 5 deletions.
Original file line number Diff line number Diff line change
@@ -1,12 +1,35 @@
name: Package Release
name: Build & Deploy

on:
release:
types: [published]

jobs:
build-and-deploy:
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
Expand Down
2 changes: 1 addition & 1 deletion application/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "kbs-electron",
"productName": "Keyboard Sounds",
"version": "1.0.4",
"version": "1.0.6",
"description": "https://keyboardsounds.net/",
"main": ".webpack/main",
"repository": {
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[project]
name = "keyboardsounds"
version = "5.7.8"
version = "5.8.0"
authors = [
{ name="Nathan Fiscaletti", email="nate.fiscaletti@gmail.com" },
]
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

setup(
name="keyboardsounds",
version="5.7.8",
version="5.8.0",
description="Adds the ability to play sounds while typing on any system.",
author="Nathan Fiscaletti",
author_email="nate.fiscaletti@gmail.com",
Expand Down

0 comments on commit 0e2995c

Please sign in to comment.