Skip to content

Commit 4fbecba

Browse files
committed
🔧 Bump version to 1.7.7 [push]
1 parent 6a663f1 commit 4fbecba

File tree

2 files changed

+8
-6
lines changed

2 files changed

+8
-6
lines changed

.github/workflows/release.yml

Lines changed: 7 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -8,12 +8,12 @@ jobs:
88
build-release:
99
name: 🐍 Build Release
1010
runs-on: ubuntu-latest
11-
if: contains(github.event.head_commit.message, 'push') # 👈 Only run if commit message includes 'push'
11+
if: contains(github.event.head_commit.message, 'push')
1212
steps:
13-
- uses: actions/checkout@v3
13+
- uses: actions/checkout@v4
1414

1515
- name: 1️⃣ Set Up Python
16-
uses: actions/setup-python@v3
16+
uses: actions/setup-python@v5
1717
with:
1818
python-version: '3.11'
1919

@@ -38,15 +38,17 @@ jobs:
3838

3939
publish-release:
4040
name: 📦 Publish Release To PyPI
41-
needs: [build-release]
41+
needs: build-release
4242
runs-on: ubuntu-latest
43+
if: needs.build-release.result == 'success'
4344
steps:
4445
- uses: actions/download-artifact@v4
4546
with:
4647
name: paillier-dist
4748
path: dist
4849

49-
- uses: pypa/gh-action-pypi-publish@v1.13.0
50+
- name: 🚀 Upload To PyPI
51+
uses: pypa/gh-action-pypi-publish@v1.13.0
5052
with:
5153
user: __token__
5254
password: ${{ secrets.PYPI_API_TOKEN }}

setup.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
AUTHOR = "Amine Soukara"
1818
EMAIL = "AmineSoukara@gmail.com"
1919
URL = "https://github.com/AmineSoukara/Amazon-Music"
20-
VERSION = "1.7.6"
20+
VERSION = "1.7.7"
2121

2222
# Get the long description from README
2323

0 commit comments

Comments
 (0)