Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Release 2024.8.8 (retry after adding IF statements) #420

Merged
merged 1 commit into from
Aug 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Release
name: Release and publish 📦
# detect new version and create tag for it, build Python 📦
# generate release notes for GitHub release
# If tag for new version was created, then publish GitHub release
Expand Down Expand Up @@ -62,7 +62,7 @@ jobs:
version=$(poetry version | awk '{ print $2 }') &&
poetry version $version.dev.$(date +%Y%m%d%H%M%S)

- name: Build a binary wheel (.whl)
- name: Build a binary wheel (.whl) and a source tarball (.tr.gz)
run: |
poetry build --ansi

Expand Down Expand Up @@ -105,6 +105,7 @@ jobs:

publish-to-test-pypi:
name: 📦 to 🧪TestPyPI | Publish Python 🐍 distribution
if: needs.build-package-and-publish-gh-release.outputs.output1 != ''
needs:
- build-package-and-publish-gh-release
runs-on: ubuntu-latest
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
[tool.poetry]
name = "playlist-along"
version = "2024.8.8b1"
version = "2024.8.8"
description = "Python CLI app for M3U playlists conversion and processing"
authors = ["Artem Hotenov <[email protected]>"]
license = "MIT"
Expand Down
Loading