pyforge-deploy 0.3.2__tar.gz → 0.3.4__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.
- {pyforge_deploy-0.3.2/src/pyforge_deploy.egg-info → pyforge_deploy-0.3.4}/PKG-INFO +1 -1
- pyforge_deploy-0.3.4/src/pyforge_deploy/__about__.py +1 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/templates/workflows.py +2 -1
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4/src/pyforge_deploy.egg-info}/PKG-INFO +1 -1
- pyforge_deploy-0.3.2/src/pyforge_deploy/__about__.py +0 -1
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/LICENSE +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/MANIFEST.in +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/README.md +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/pyproject.toml +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/requirements-dev.txt +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/setup.cfg +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/__init__.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/builders/__init__.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/builders/docker.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/builders/docker_engine.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/builders/pypi.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/builders/version_engine.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/cli.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/colors.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/py.typed +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy/templates/Dockerfile.j2 +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy.egg-info/SOURCES.txt +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy.egg-info/dependency_links.txt +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy.egg-info/entry_points.txt +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy.egg-info/requires.txt +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy.egg-info/top_level.txt +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/tests/test_cli.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/tests/test_colors.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/tests/test_docker.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/tests/test_docker_engine.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/tests/test_pypi.py +0 -0
- {pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/tests/test_version_engine.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyforge-deploy
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Lightweight automation tool designed to streamline the transition from development to distribution.
|
|
5
5
|
Author-email: Ertan Tunç Türk <ertantuncturk61@gmail.com>
|
|
6
6
|
Maintainer-email: Ertan Tunç Türk <ertantuncturk61@gmail.com>
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
__version__ = "0.3.4"
|
|
@@ -15,7 +15,7 @@ jobs:
|
|
|
15
15
|
runs-on: ubuntu-latest
|
|
16
16
|
steps:
|
|
17
17
|
- name: Checkout Code
|
|
18
|
-
uses: actions/checkout@
|
|
18
|
+
uses: actions/checkout@v5
|
|
19
19
|
with:
|
|
20
20
|
fetch-depth: 0
|
|
21
21
|
|
|
@@ -25,6 +25,7 @@ jobs:
|
|
|
25
25
|
pypi_deploy: 'true'
|
|
26
26
|
docker_build: 'true'
|
|
27
27
|
bump: 'patch'
|
|
28
|
+
target_branch: ${{ github.event.repository.default_branch }}
|
|
28
29
|
env:
|
|
29
30
|
PYPI_TOKEN: ${{ secrets.PYPI_TOKEN }}
|
|
30
31
|
DOCKERHUB_USERNAME: ${{ secrets.DOCKERHUB_USERNAME }}
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: pyforge-deploy
|
|
3
|
-
Version: 0.3.
|
|
3
|
+
Version: 0.3.4
|
|
4
4
|
Summary: Lightweight automation tool designed to streamline the transition from development to distribution.
|
|
5
5
|
Author-email: Ertan Tunç Türk <ertantuncturk61@gmail.com>
|
|
6
6
|
Maintainer-email: Ertan Tunç Türk <ertantuncturk61@gmail.com>
|
|
@@ -1 +0,0 @@
|
|
|
1
|
-
__version__ = "0.3.2"
|
|
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
|
{pyforge_deploy-0.3.2 → pyforge_deploy-0.3.4}/src/pyforge_deploy.egg-info/dependency_links.txt
RENAMED
|
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
|