Bump project version #8
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: Release | |
on: | |
push: | |
tags: | |
- 'v*' | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.12" | |
- name: Install poetry | |
run: | | |
python -m pip install poetry | |
- name: Extract Project VERSION | |
run: | | |
echo "PROJECT_VERSION=$(poetry version --short)" >> $GITHUB_ENV | |
- name: Check if tag version matches project version | |
run: | | |
TAG=$(git describe HEAD --tags --abbrev=0) | |
if [[ "$TAG" != "v$PROJECT_VERSION" ]]; then exit 1; fi | |
- name: Create Release Note | |
run: | | |
git log $(git describe HEAD~ --tags --abbrev=0)..HEAD --pretty='format:* %h %s%n * %an <%ae>' --no-merges >> ".github/RELEASE-NOTE.md" | |
- name: Create Package | |
run: | | |
poetry build | |
- name: Release | |
uses: softprops/action-gh-release@v2 | |
with: | |
body_path: ".github/RELEASE-NOTE.md" | |
draft: true | |
files: | | |
dist/pynamodb-encoder-${{ env.PROJECT_VERSION }}.tar.gz | |
dist/pynamodb_encoder-${{ env.PROJECT_VERSION }}-py3-none-any.whl |