psptool 3.2__tar.gz → 3.2.dev1__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {psptool-3.2 → psptool-3.2.dev1}/.github/workflows/publish.yml +23 -0
- {psptool-3.2 → psptool-3.2.dev1}/PKG-INFO +1 -1
- {psptool-3.2 → psptool-3.2.dev1}/.github/workflows/gha-metrics.yml +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/.github/workflows/python-tests.yml +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/.gitignore +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/.gitmodules +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/LICENSE +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/README.md +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/__init__.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/__main__.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/blob.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/cert_tree.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/crypto.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/directory.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/entry.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/errors.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/fet.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/file.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/firmware.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/header_file.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/key_store_file.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/microcode_file.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/psptool.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/pubkey_file.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/rom.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/psptool/utils.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/pyproject.toml +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/tests/__init__.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/tests/create_metrics.sh +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/tests/gha_metrics.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/tests/integration/__init__.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/tests/integration/test_psptrace.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/tests/integration/test_rom_files.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/tests/metrics.txt +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/tests/unit/__init__.py +0 -0
- {psptool-3.2 → psptool-3.2.dev1}/tests/unit/test_cli.py +0 -0
|
@@ -49,3 +49,26 @@ jobs:
|
|
|
49
49
|
path: dist/
|
|
50
50
|
- name: Publish distribution to PyPI
|
|
51
51
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
52
|
+
|
|
53
|
+
publish-to-testpypi:
|
|
54
|
+
name: >-
|
|
55
|
+
Publish Python distribution to TestPyPI
|
|
56
|
+
needs:
|
|
57
|
+
- build
|
|
58
|
+
runs-on: ubuntu-latest
|
|
59
|
+
environment:
|
|
60
|
+
name: testpypi
|
|
61
|
+
url: https://test.pypi.org/p/psptool/
|
|
62
|
+
permissions:
|
|
63
|
+
id-token: write # important for trusted publishing
|
|
64
|
+
steps:
|
|
65
|
+
- name: Download all the dists
|
|
66
|
+
uses: actions/download-artifact@v4
|
|
67
|
+
with:
|
|
68
|
+
name: python-package-distributions
|
|
69
|
+
path: dist/
|
|
70
|
+
- name: Publish distribution to TestPyPI
|
|
71
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
72
|
+
with:
|
|
73
|
+
repository-url: https://test.pypi.org/legacy/
|
|
74
|
+
verbose: true
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|