-
-
Notifications
You must be signed in to change notification settings - Fork 0
chore: reflect the repo name change for packaging metadata #7
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
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
This file was deleted.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -6,26 +6,18 @@ on: | |
| - published | ||
|
|
||
| jobs: | ||
| ci: | ||
| uses: ./.github/workflows/ci.yml | ||
|
|
||
| pr-build: | ||
| needs: ci | ||
| uses: ./.github/workflows/pr-build.yml | ||
|
|
||
| pypi-upload: | ||
|
Contributor
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. issue (bug_risk): Removing the
|
||
| needs: pr-build | ||
| runs-on: ubuntu-latest | ||
| steps: | ||
| - name: Checkout repo | ||
| uses: actions/checkout@v6 | ||
|
|
||
| - name: Upload java-api to PyPI | ||
| - name: Upload package to PyPI | ||
| uses: coatl-dev/actions/pypi-upload@v5 | ||
| with: | ||
| password: ${{ secrets.PYPI_API_TOKEN_JAVA_API_PKG }} | ||
|
|
||
| - name: Upload java-api-stubs to PyPI | ||
| - name: Upload stubs to PyPI | ||
| uses: coatl-dev/actions/pypi-upload@v5 | ||
| with: | ||
| python-version: '3.12' | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
question (testing): Tox jobs are restricted to pull requests and will not run on pushes to
main.Because
tox-package(andtox-stubs) is guarded byif: ${{ github.event_name == 'pull_request' }}, these checks won’t run onpushevents tomain—onlypylintwill. If you want tox to run on direct pushes (e.g., release or admin pushes), consider adjusting the condition to also allowpushtomain(e.g., viagithub.ref == 'refs/heads/main'). If tox-on-PR-only is intentional, no change needed.