Compare commits

..

No commits in common. "0ca8609bb74c3d416e501f7670be4a38aba6913b" and "7a8b3c716073a8273c5ec5f945fedb6fd861880b" have entirely different histories.

4 changed files with 22 additions and 35 deletions

View File

@ -47,12 +47,6 @@ jobs:
needs: test
runs-on: ubuntu-latest
if: github.event_name == 'push' && startsWith(github.ref, 'refs/tags')
environment:
name: pypi
url: https://pypi.org/p/yaclog
permissions:
id-token: write
contents: write
steps:
- uses: actions/checkout@v4
@ -62,19 +56,25 @@ jobs:
with:
python-version: '>=3.8'
- name: Install dependencies
run: |
python -m pip install --upgrade pip
python -m pip install setuptools wheel twine
- name: Install pypa/build
run: python -m pip install build --user
- name: Build a binary wheel and source tarball
run: python -m build --sdist --wheel --outdir dist/
- name: Get Changelog Information
- name: Get version info
id: yaclog-show
uses: ./
# self-hosting!
- name: Publish to PyPI
uses: pypa/gh-action-pypi-publish@release/v1
with:
password: ${{ secrets.PYPI_API_TOKEN }}
- name: Publish to Github
run: |

View File

@ -2,17 +2,6 @@
All notable changes to this project will be documented in this file
## Version 1.4.2 - 2024-08-27
### Fixed
- Fixed package failing to install without git history
### Added
- Added the ability to specify the changelog path in the action
## Version 1.4.1 - 2024-08-25
### Fixed

View File

@ -1,13 +1,12 @@
name: Yaclog
description: Get version information from a changelog
description: >
Get version information from a changelog, and optionally create a new release.
The `yaclog` command is made available for use in future steps.
branding:
icon: file-text
color: orange
inputs:
changelog-path:
description: "Path of the changelog markdown file"
markdown:
description: If outputs should be in markdown format or not
default: 'true'
@ -46,21 +45,21 @@ runs:
- name: Setup Yaclog
shell: bash
run: |
[[ "$ACTION_REF" =~ ^[0-9]+\.[0-9]+\.[0-9]+$ ]] && export SETUPTOOLS_SCM_PRETEND_VERSION_FOR_YACLOG="$ACTION_REF"
pipx install --python ${{ steps.setup-python.outputs.python-path }} ${{ github.action_path }}
env:
ACTION_REF: ${{ github.action_ref }}
run: pipx install --python ${{ steps.setup-python.outputs.python-path }} ${{ github.action_path }}
- name: Create New Release
shell: bash
if: ${{ inputs.release }}
run: yaclog release --yes --commit ${{ inputs.release }}
- name: Get Changelog Information
- name: Get Version Information
id: yaclog-show
shell: bash
run: >
yaclog ${{ inputs.changelog-path && format('--path {0}', inputs.changelog-path) }}
show ---gh-actions ${{ inputs.markdown && '--markdown' }}
| tee -a "$GITHUB_OUTPUT"
run: |
yaclog show ---gh-actions ${{ inputs.markdown && '--markdown' }} >> "$GITHUB_OUTPUT"
# output like so:
# name=Version 1.3.0
# header=Version 1.3.0 - 2024-08-08
# version=1.3.0
# body_file={path to file containing version body}
# changelog={path to changelog}

View File

@ -57,7 +57,6 @@ Changelog = "https://github.com/drewcassidy/yaclog/blob/main/CHANGELOG.md"
Docs = "https://yaclog.readthedocs.io/"
[tool.setuptools_scm]
fallback_version = "0.0.0"
[tool.setuptools.packages.find]
include = ["yaclog*"]
include = ["yaclog"]