Create Release #100
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: Create Release | |
permissions: | |
contents: write | |
on: | |
workflow_dispatch: | |
jobs: | |
release: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Set up Python | |
uses: actions/setup-python@v2 | |
with: | |
python-version: 3.x | |
- name: Install dependencies | |
run: | | |
python -m pip install --upgrade pip | |
pip install bump2version bumpversion # Install bump2version if not already installed | |
- name: Bump version | |
env: | |
GITHUB_USERNAME: daquintero | |
GITHUB_EMAIL: [email protected] | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
run: | | |
# Use the appropriate bumpversion command for your project | |
git config --local user.email "github-actions[bot]@users.noreply.github.com" | |
git config --local user.name "github-actions[bot]" | |
bump2version patch # Minor increase | |
export VERSION=$(bumpversion --dry-run --list pyproject.toml | grep '^new_version=' | sed -r 's/^new_version=//') | |
echo "VERSION=$VERSION" >> $GITHUB_ENV | |
git tag -d v$VERSION | |
git tag v$VERSION | |
- name: Push changes | |
env: | |
GITHUB_USERNAME: daquintero | |
GITHUB_EMAIL: [email protected] | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
uses: ad-m/github-push-action@master | |
with: | |
github_token: ${{ secrets.GITHUB_TOKEN }} | |
tags: true | |
- name: Create release | |
uses: actions/create-release@v1 | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
with: | |
tag_name: v${{ env.VERSION }} # Use the incremented version as the tag name | |
release_name: ${{ env.VERSION }} # Customize the release name | |
body: | | |
Update PYPI ${{ env.VERSION }} | |
draft: false | |
release: true | |
#name: Create Release | |
# | |
#on: | |
# push: | |
# branches: | |
# - master | |
# | |
#permissions: | |
# contents: write | |
# | |
#jobs: | |
# create_release: | |
# runs-on: ubuntu-latest | |
# | |
# steps: | |
# - name: Checkout code | |
# uses: actions/checkout@v2 | |
# | |
# - name: Set up Python | |
# uses: actions/setup-python@v2 | |
# with: | |
# python-version: 3.x | |
# | |
# - name: Install dependencies | |
# run: | | |
# python -m pip install --upgrade pip | |
# pip install bumpversion # Install bumpversion if not already installed | |
# | |
# - name: Bump version | |
# env: | |
# GITHUB_USERNAME: daquintero | |
# GITHUB_EMAIL: [email protected] | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# run: | | |
# # Use the appropriate bumpversion command for your project | |
# bumpversion patch # Minor increase | |
# | |
# - name: Set version as environment variable | |
# run: | | |
# export VERSION=$(bumpversion --dry-run --list | grep '^new_version=' | sed -r 's/^new_version=//') | |
# | |
# - name: Create release | |
# uses: actions/create-release@v1 | |
# env: | |
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
# with: | |
# tag_name: v${{ env.VERSION }} # Use the incremented version as the tag name | |
# release_name: Release ${{ env.VERSION }} # Customize the release name | |
# body: | | |
# Update PYPI v${{ env.VERSION }} | |
# draft: false | |
# prerelease: false |