-
-
Notifications
You must be signed in to change notification settings - Fork 2.1k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
15 changed files
with
300 additions
and
167 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -57,6 +57,14 @@ jobs: | |
docker run -p 5000:5000 --name moto motoserver/moto & | ||
TEST_SERVER_MODE=true pytest -sv tests/test_core tests/test_s3/test_s3.py | ||
docker stop moto | ||
- name: Commit Version Change | ||
run: | | ||
git config --local user.email "[email protected]" | ||
git config --local user.name "Moto Admin" | ||
git add moto/__init__.py | ||
git add setup.cfg | ||
git commit -m "Pre-Release: Up Version Number" | ||
git push | ||
- name: Publish to PyPI | ||
uses: pypa/gh-action-pypi-publish@release/v1 | ||
- name: Tag version on Github | ||
|
@@ -108,6 +116,7 @@ jobs: | |
git config --local user.email "[email protected]" | ||
git config --local user.name "Moto Admin" | ||
git add moto/__init__.py | ||
git add setup.cfg | ||
git add CHANGELOG.md | ||
git commit -m "Post-release steps" | ||
git commit -m "Admin: Post-release steps" | ||
git push |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.