1
1
mirror of https://github.com/neosubhamoy/pytubepp.git synced 2025-12-20 01:09:36 +05:30

(ci/cd): added new github release workflow and updated readme

This commit is contained in:
2025-03-07 19:24:46 +05:30
parent 1597d9d94e
commit 1ec0ec54c8
3 changed files with 54 additions and 10 deletions

View File

@@ -1,7 +1,7 @@
on:
push:
branches:
- main
tags:
- 'v*.*.*-*'
name: 🚀 Publish to PyPI
jobs:

43
.github/workflows/release.yml vendored Normal file
View File

@@ -0,0 +1,43 @@
on:
push:
tags:
- 'v*.*.*-*'
name: 🚀 Release on GitHub
jobs:
release:
name: 🎉 Release on GitHub
runs-on: ubuntu-latest
steps:
- name: 🚚 Checkout repository
uses: actions/checkout@v4
- name: 🐍 Setup Python
uses: actions/setup-python@v5
with:
python-version: '3.12'
- name: 📦 Install dependencies
run: |
pip install -r requirements.txt
- name: 🛠️ Build package
run: python3 -m build
- name: "✏️ Generate release changelog"
id: gen-changelog
uses: janheinrichmerker/action-github-changelog-generator@v2.3
with:
token: ${{ secrets.GITHUB_TOKEN }}
- name: 🚀 Publish release to GitHub
uses: softprops/action-gh-release@v2
if: startsWith(github.ref, 'refs/tags/')
with:
name: ${{github.event.repository.name}}-${{github.ref_name}}
body: ${{ steps.gen-changelog.outputs.changelog }}
files: dist/*
draft: false
prerelease: false
make_latest: true