-
Notifications
You must be signed in to change notification settings - Fork 45
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix for temporal matcher; publishing in separate CI workflow
- Loading branch information
1 parent
13950bb
commit 0851075
Showing
5 changed files
with
108 additions
and
23 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 |
---|---|---|
|
@@ -85,17 +85,6 @@ jobs: | |
with: | ||
name: Artifacts | ||
path: .artifacts/* | ||
- name: Publish to PyPI Test | ||
if: ${{ github.event_name == 'release' && (matrix.os == 'windows-latest' || matrix.python-version == '3.8') }} | ||
uses: pypa/[email protected] | ||
with: | ||
skip_existing: true | ||
verbose: true | ||
verify_metadata: true | ||
packages_dir: .artifacts/dist/ | ||
user: __token__ | ||
password: ${{ secrets.TEST_PYPI_API_TOKEN }} # this needs to be uploaded to github actions secrets | ||
repository_url: https://test.pypi.org/legacy/ # todo: delete for real pypi | ||
coveralls: | ||
name: Submit Coveralls 👚 | ||
needs: build | ||
|
@@ -107,3 +96,18 @@ jobs: | |
pip3 install --upgrade coveralls && coveralls --service=github --finish | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
publish: | ||
name: Upload to PyPI | ||
if: ${{ github.event_name == 'release' }} | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Publish to PyPI Test | ||
uses: pypa/[email protected] | ||
with: | ||
skip_existing: true | ||
verbose: true | ||
verify_metadata: true | ||
packages_dir: .artifacts/dist/ | ||
user: __token__ | ||
password: ${{ secrets.TEST_PYPI_API_TOKEN }} # this needs to be uploaded to github actions secrets | ||
repository_url: https://test.pypi.org/legacy/ # todo: delete for real pypi |
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
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
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
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