File tree Expand file tree Collapse file tree 3 files changed +35
-2
lines changed
Expand file tree Collapse file tree 3 files changed +35
-2
lines changed Original file line number Diff line number Diff line change 5353
5454 - name : Upload playwright test report
5555 if : always()
56- uses : actions/upload-artifact@v3
56+ uses : actions/upload-artifact@v5
5757 with :
5858 name : playwright-tests
5959 path : |
Original file line number Diff line number Diff line change 1+ We migrated from
2+ [ ~~ bump2version~~ ] ( https://github.com/c4urself/bump2version )
3+ to
4+ [ bump-my-version] ( https://callowayproject.github.io/bump-my-version )
5+ and use [ twine] ( https://twine.readthedocs.io/en/stable/ ) for uploading releases.
6+
7+ ``` bash
8+ pip install --upgrade bump-my-version twine build
9+ git status # # working dir must be clean
10+
11+ # # Bump to next release version
12+ bump-my-version show-bump
13+ bump-my-version bump --dry-run --verbose release
14+ # bump-my-version bump --verbose release
15+
16+ # # Add -dev suffix for continued development on master branch
17+ bump-my-version show-bump
18+ bump-my-version bump --dry-run --verbose patch
19+ # bump-my-version bump --verbose patch
20+
21+ # # ensure we package clean directories
22+ git push
23+ cd /tmp
24+ git clone
[email protected] :ogdf/ogdf-python.git
25+ cd ogdf-python/
26+ git pull
27+ git checkout VERSION
28+ python -m build
29+
30+ # # upload! (API token in enpass note)
31+ twine upload -r testpypi dist/*
32+ # twine upload dist/*
33+ ```
Original file line number Diff line number Diff line change @@ -7,7 +7,7 @@ authors = [
77]
88requires-python = " >=3.7"
99license = " Apache-2.0"
10- readme = " README.rst "
10+ readme = " README.md "
1111homepage = " https://ogdf.github.io"
1212repository = " https://github.com/N-Coder/ogdf-python"
1313documentation = " https://ogdf-python.readthedocs.io"
You can’t perform that action at this time.
0 commit comments