-
Notifications
You must be signed in to change notification settings - Fork 92
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #5 from guessit-io/develop
Update to latest dev
- Loading branch information
Showing
7 changed files
with
2,326 additions
and
402 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 |
---|---|---|
|
@@ -102,7 +102,9 @@ jobs: | |
git config --global user.name "github-actions" | ||
- name: Bump version | ||
run: semantic-release version | ||
run: semantic-release version --no-commit --no-tag --no-push | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Build | ||
run: python setup.py sdist bdist_wheel | ||
|
@@ -139,7 +141,9 @@ jobs: | |
git config --global user.name "github-actions" | ||
- name: Bump version | ||
run: semantic-release version | ||
run: semantic-release version --no-commit --no-tag --no-push | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Binary | ||
run: pyinstaller --dist ./dist guessit.spec | ||
|
@@ -180,7 +184,9 @@ jobs: | |
git config --global user.name "github-actions" | ||
- name: Bump version | ||
run: semantic-release version -v DEBUG | ||
run: semantic-release version --no-commit --no-tag --no-push | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Binary | ||
run: pyinstaller --dist ./dist guessit.spec | ||
|
@@ -220,7 +226,9 @@ jobs: | |
git config --global user.name "github-actions" | ||
- name: Bump version | ||
run: semantic-release version -v DEBUG | ||
run: semantic-release version --no-commit --no-tag --no-push | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Binary | ||
run: pyinstaller --dist ./dist guessit.spec | ||
|
@@ -267,15 +275,24 @@ jobs: | |
git config --global user.email "[email protected]" | ||
git config --global user.name "github-actions" | ||
- name: Install python-semantic-release | ||
run: pip install python-semantic-release | ||
- name: Install python-semantic-release twine | ||
run: pip install python-semantic-release twine | ||
|
||
- name: Publish release | ||
run: semantic-release publish -v DEBUG | ||
- name: Bump version | ||
run: semantic-release version | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Upload to pypi | ||
run: twine upload --username "__token__" --password "${PYPI_TOKEN}" dist/*.tar.gz dist/*.whl | ||
env: | ||
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }} | ||
|
||
- name: Publish release | ||
run: semantic-release publish | ||
env: | ||
GH_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
|
||
- name: Merge master to develop | ||
uses: robotology/[email protected] | ||
with: | ||
|
Oops, something went wrong.