-
Notifications
You must be signed in to change notification settings - Fork 465
Mergeback 1.4.4rc2 to 1.5.0 #2639
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
5 commits
Select commit
Hold shift + click to select a range
4ca63e8
Update publish workflow for tag checking (#2632)
yunchu a2545f9
Update release note and readme (#2637)
yunchu 5f1d0ba
Merge branch 'releases/1.4.0' into mergeback/1.4.4rc2
yunchu 0e09a19
update release note and, changelog, and readme
yunchu 8107372
Merge branch 'releases/1.5.0' into mergeback/1.4.4rc2
yunchu File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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 hidden or 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 |
|---|---|---|
| @@ -0,0 +1,83 @@ | ||
| name: Build and upload to internal PyPI | ||
|
|
||
| on: | ||
| workflow_dispatch: # run on request (no need for PR) | ||
|
|
||
| jobs: | ||
| build_wheels: | ||
| name: Build wheels | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v3 | ||
| - name: Build wheels | ||
| uses: pypa/cibuildwheel@v2.13.1 | ||
| - uses: actions/upload-artifact@v3 | ||
| with: | ||
| path: ./wheelhouse/*.whl | ||
|
|
||
| build_sdist: | ||
| name: Build source distribution | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout | ||
| uses: actions/checkout@v3 | ||
| - name: Set up Python 3.10 | ||
| uses: actions/setup-python@v3 | ||
| with: | ||
| python-version: "3.10" | ||
| - name: Install pypa/build | ||
| run: python -m pip install build | ||
| - name: Build sdist | ||
| run: python -m build --sdist | ||
| - uses: actions/upload-artifact@v3 | ||
| with: | ||
| path: dist/*.tar.gz | ||
|
|
||
| publish_package: | ||
| name: Publish package | ||
| needs: [build_wheels, build_sdist] | ||
| environment: pypi | ||
| runs-on: [self-hosted, linux, x64, dev] | ||
| permissions: write-all | ||
| steps: | ||
| - name: Set up Python | ||
| uses: actions/setup-python@v4 | ||
| with: | ||
| python-version: "3.10" | ||
| - name: Install dependencies | ||
| run: python -m pip install twine | ||
| - name: Download artifacts | ||
| uses: actions/download-artifact@v3 | ||
| with: | ||
| # unpacks default artifact into dist/ | ||
| # if `name: artifact` is omitted, the action will create extra parent dir | ||
| name: artifact | ||
| path: dist | ||
| - name: Check tag | ||
| id: check-tag | ||
| uses: actions-ecosystem/action-regex-match@v2 | ||
| with: | ||
| text: ${{ github.ref }} | ||
| regex: '^refs/heads/releases/[0-9]+\.[0-9]+\.[0-9]+(\.[0-9]+rc[0-9]+|rc[0-9]+)?$' | ||
| - name: Check dist contents | ||
| run: twine check dist/* | ||
| - name: Publish package dist to internal PyPI | ||
| if: ${{ steps.check-tag.outputs.match != '' }} | ||
| run: | | ||
| export no_proxy=${{ secrets.PYPI_HOST }} | ||
| export REPOSITORY_URL=http://${{ secrets.PYPI_HOST }}:${{ secrets.PYPI_PORT }} | ||
| twine upload --verbose --repository-url $REPOSITORY_URL dist/* -u ${{ secrets.PYPI_USER }} -p ${{ secrets.PYPI_PASSWORD }} | ||
| - name: Publish package distributions to TestPyPI | ||
| if: ${{ steps.check-tag.outputs.match == '' }} | ||
| run: | | ||
| export REPOSITORY_URL=https://test.pypi.org/legacy/ | ||
| twine upload --verbose --repository-url $REPOSITORY_URL dist/* -u __token__ -p ${{ secrets.TESTPYPI_API_TOKEN }} | ||
| - name: Clean up dist | ||
| if: ${{ always() }} | ||
| run: | | ||
| if OUTPUT=$(ls | grep -c dist) | ||
| then | ||
| echo "Cleaning up dist directory" | ||
| rm -r dist | ||
| fi |
This file contains hidden or 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 hidden or 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 hidden or 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 hidden or 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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.