Skip to content
This repository has been archived by the owner on Oct 9, 2023. It is now read-only.

Commit

Permalink
ci: extend releasing flow (#1623)
Browse files Browse the repository at this point in the history
  • Loading branch information
Borda authored Jun 30, 2023
1 parent a9cedb5 commit f59d445
Show file tree
Hide file tree
Showing 2 changed files with 27 additions and 5 deletions.
16 changes: 11 additions & 5 deletions .github/workflows/pypi-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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/[email protected]
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
Expand Down
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit f59d445

Please sign in to comment.