Skip to content

Commit

Permalink
Remove changelog reader step from release workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
Carsten Fortmann-Grote committed Mar 21, 2024
1 parent f340d40 commit 46110e1
Showing 1 changed file with 5 additions and 16 deletions.
21 changes: 5 additions & 16 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,22 +34,14 @@ jobs:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v2

- name: Get Changelog Entry
id: changelog_reader
uses: mindsers/changelog-reader-action@v2
with:
validation_depth: 10
version: ${{ steps.tag_name.outputs.current_version }}
path: ./CHANGELOG.md

- uses: actions/setup-python@v2
with:
python-version: ${{ matrix.python-versions }}

- name: Install dependencies
run: |
python -m pip install --upgrade pip
pip install poetry
pip install -e .
- name: build documentation
run: |
Expand All @@ -63,12 +55,9 @@ jobs:
publish_dir: ./site

- name: Build wheels and source tarball
run: >-
poetry build
- name: show temporary files
run: >-
ls -l
run: |
python -m build --wheels
python -m build --sdist
- name: create github release
id: create_release
Expand All @@ -77,6 +66,6 @@ jobs:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
with:
body: ${{ steps.changelog_reader.outputs.changes }}
files: dist/*.whl
files: dist/*
draft: false
prerelease: false

0 comments on commit 46110e1

Please sign in to comment.