Skip to content

Commit

Permalink
update package path
Browse files Browse the repository at this point in the history
  • Loading branch information
AAriam committed Jan 25, 2025
1 parent f9dd9fd commit 372e542
Show file tree
Hide file tree
Showing 12 changed files with 6 additions and 4 deletions.
10 changes: 6 additions & 4 deletions .github/workflows/_pkg_publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
workflow_dispatch:
push:
paths:
- 'pyproject.toml'
- 'pkg/pyproject.toml'

jobs:

Expand All @@ -23,13 +23,14 @@ jobs:

- name: 'Build sdist'
run: |
cd pkg
pipx run build --sdist --wheel --outdir dist/
- name: 'Upload package'
uses: pypa/gh-action-pypi-publish@release/v1
# https://github.com/marketplace/actions/pypi-publish
with:
packages-dir: dist
packages-dir: pkg/dist
verify-metadata: false
verbose: true
print-hash: true
Expand All @@ -47,15 +48,16 @@ jobs:

- name: 'Build sdist'
run: |
cd pkg
pipx run build --sdist --wheel --outdir dist/
- name: 'Upload package'
uses: pypa/gh-action-pypi-publish@release/v1
# https://github.com/marketplace/actions/pypi-publish
with:
packages-dir: dist
packages-dir: pkg/dist
repository-url: https://test.pypi.org/legacy/
verify-metadata: false
verbose: true
print-hash: true
skip-existing: false
skip-existing: false
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit 372e542

Please sign in to comment.