diff --git a/.github/workflows/pypi-release.yml b/.github/workflows/pypi-release.yml index 5736e12f29..3e14e5cdea 100644 --- a/.github/workflows/pypi-release.yml +++ b/.github/workflows/pypi-release.yml @@ -20,11 +20,17 @@ jobs: python-version: 3.8 - name: Install dependencies - run: pip install --user --upgrade setuptools wheel build - - name: Build - run: | - python -m build - ls -lh dist/ + run: python -m pip install -U setuptools wheel build twine + - name: Build package + run: python -m build + - name: Check package + run: twine check dist/* + + - name: Upload to release + uses: AButler/upload-release-assets@v2.0 + with: + files: 'dist/*' + repo-token: ${{ secrets.GITHUB_TOKEN }} # We do this, since failures on test.pypi aren't that bad - name: Publish to Test PyPI diff --git a/CHANGELOG.md b/CHANGELOG.md index eec1937ff9..e1ca71bf9b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,22 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/). +## [UnReleased] - 2023-MM-DD + +### Added + + + +### Changed + +- + + +### Fixed + + + + ## [0.8.2] - 2023-06-30 ### Changed