Skip to content

Commit 1bf2270

Browse files
committed
Release version 0.0.0.dev9
1 parent 87b39cf commit 1bf2270

File tree

15 files changed

+24
-8
lines changed

15 files changed

+24
-8
lines changed

.github/workflows/_pkg_publish.yaml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
workflow_dispatch:
88
push:
99
paths:
10-
- 'pyproject.toml'
10+
- 'pkg/pyproject.toml'
1111

1212
jobs:
1313

@@ -23,13 +23,14 @@ jobs:
2323

2424
- name: 'Build sdist'
2525
run: |
26+
cd pkg
2627
pipx run build --sdist --wheel --outdir dist/
2728
2829
- name: 'Upload package'
2930
uses: pypa/gh-action-pypi-publish@release/v1
3031
# https://github.com/marketplace/actions/pypi-publish
3132
with:
32-
packages-dir: dist
33+
packages-dir: pkg/dist
3334
verify-metadata: false
3435
verbose: true
3536
print-hash: true
@@ -47,15 +48,16 @@ jobs:
4748

4849
- name: 'Build sdist'
4950
run: |
51+
cd pkg
5052
pipx run build --sdist --wheel --outdir dist/
5153
5254
- name: 'Upload package'
5355
uses: pypa/gh-action-pypi-publish@release/v1
5456
# https://github.com/marketplace/actions/pypi-publish
5557
with:
56-
packages-dir: dist
58+
packages-dir: pkg/dist
5759
repository-url: https://test.pypi.org/legacy/
5860
verify-metadata: false
5961
verbose: true
6062
print-hash: true
61-
skip-existing: false
63+
skip-existing: false
File renamed without changes.

pyproject.toml renamed to pkg/pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ namespaces = true
1515

1616
# ----------------------------------------- Project Metadata -------------------------------------
1717
[project]
18-
version = "0.0.0.dev8"
18+
version = "0.0.0.dev9"
1919
name = "PyColorIT"
2020
requires-python = ">=3.10"
2121
dependencies = [
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)