build(deps): bump jinja2 from 3.1.2 to 3.1.3 #4
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: Build and Publish Package | |
on: | |
pull_request: | |
branches: | |
- main | |
types: | |
- closed | |
jobs: | |
publish-package: | |
if: ${{ github.event.pull_request.merged == true && startsWith(github.event.pull_request.head.ref, 'release/v') }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out the main branch | |
uses: actions/checkout@v4 | |
with: | |
ref: main | |
- name: Set up Python 3.10 | |
uses: actions/setup-python@v4 | |
with: | |
python-version: "3.10" | |
- name: Install Poetry | |
uses: snok/install-poetry@v1 | |
with: | |
version: 1.6.1 | |
- name: Configure poetry | |
run: poetry config --no-interaction pypi-token.pypi ${{ secrets.PYPI_TOKEN }} | |
- name: Get this package's Version | |
id: package_version | |
run: echo "package_version=$(poetry version --short)" >> $GITHUB_OUTPUT | |
- name: Build package | |
run: poetry build --no-interaction | |
- name: Publish package to PyPI | |
run: poetry publish --no-interaction | |
- name: Create a Github Release | |
uses: softprops/action-gh-release@v1 | |
with: | |
tag_name: v${{ steps.package_version.outputs.package_version }} | |
target_commitish: main | |
token: ${{ secrets.GH_RELEASE_TOKEN }} | |
body_path: CHANGELOG.md | |
files: | | |
LICENSE | |
dist/*harlequin*.whl | |
dist/*harlequin*.tar.gz |