-
Notifications
You must be signed in to change notification settings - Fork 54
Update the deploy CI to maximize safety/intent matching #162
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
Closed
Closed
Changes from 2 commits
Commits
Show all changes
3 commits
Select commit
Hold shift + click to select a range
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,59 +1,58 @@ | ||
| name: Update pypi release | ||
| name: Update PyPI release | ||
|
|
||
| on: | ||
| push: | ||
| tags: | ||
| - 'v*.*.*' | ||
| pull_request: | ||
| branches: | ||
| - main | ||
| - public | ||
| types: | ||
| - labeled | ||
| - opened | ||
| - edited | ||
| - synchronize | ||
| - reopened | ||
| # v*.*.* does NOT allow post/rc tags | ||
| # the "matching with version" check ensures that | ||
| # the tag version matches the package version, | ||
| # so we can allow more flexible tag formats here | ||
| - 'v*' | ||
|
|
||
| concurrency: | ||
| group: pypi-release-${{ github.ref }} | ||
| cancel-in-progress: false | ||
|
|
||
| jobs: | ||
| release: | ||
| runs-on: ubuntu-latest | ||
|
|
||
| steps: | ||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
|
|
||
| - name: Setup Python | ||
| id: setup-python | ||
| uses: actions/setup-python@v5 | ||
| with: | ||
| python-version: '3.x' | ||
|
|
||
| - name: Cache dependencies | ||
| id: pip-cache | ||
| uses: actions/cache@v4 | ||
| with: | ||
| path: ~/.cache/pip | ||
| key: ${{ runner.os }}-pip-${{ steps.setup-python.outputs.python-version }}-${{ hashFiles('pyproject.toml', 'requirements.txt', 'setup.cfg', 'setup.py') }} | ||
| restore-keys: | | ||
| ${{ runner.os }}-pip-${{ steps.setup-python.outputs.python-version }}- | ||
| ${{ runner.os }}-pip- | ||
|
|
||
| - name: Install dependencies | ||
| - name: Install build dependencies | ||
| run: | | ||
| pip install --upgrade pip | ||
| pip install wheel | ||
| pip install "packaging>=24.2" | ||
| pip install build | ||
| pip install twine | ||
| pip install build twine "packaging>=24.2" | ||
|
|
||
| - name: Checkout code | ||
| uses: actions/checkout@v4 | ||
| - name: Install package (for version check) | ||
| run: pip install . | ||
|
|
||
| - name: Build and publish to PyPI | ||
| if: ${{ github.event_name == 'push' }} | ||
| - name: Verify tag matches package version | ||
| run: | | ||
| TAG_VERSION="${GITHUB_REF_NAME#v}" | ||
| PKG_VERSION=$(python - <<EOF | ||
| from importlib.metadata import version | ||
| print(version("deeplabcut_live")) | ||
| EOF | ||
| ) | ||
| echo "Tag version: $TAG_VERSION" | ||
| echo "Package version: $PKG_VERSION" | ||
| test "$TAG_VERSION" = "$PKG_VERSION" | ||
|
|
||
| - name: Build distributions | ||
| run: | | ||
| python -m build | ||
| ls -l dist/ | ||
|
|
||
| - name: Publish to PyPI | ||
| env: | ||
| TWINE_USERNAME: __token__ | ||
| TWINE_PASSWORD: ${{ secrets.TWINE_API_KEY }} | ||
| run: | | ||
| python -m build | ||
| ls dist/ | ||
| tar tvf dist/deeplabcut_live-*.tar.gz | ||
| python3 -m twine upload --verbose dist/* | ||
| run: python -m twine upload --verbose dist/* | ||
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.