semtag 0.1.2__tar.gz → 0.1.3__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.
- semtag-0.1.3/.github/workflows/publish.yml +49 -0
- {semtag-0.1.2 → semtag-0.1.3}/PKG-INFO +1 -1
- {semtag-0.1.2 → semtag-0.1.3}/semtag.egg-info/PKG-INFO +1 -1
- {semtag-0.1.2 → semtag-0.1.3}/semtag.egg-info/SOURCES.txt +0 -1
- semtag-0.1.2/.github/workflows/publish.yml +0 -41
- semtag-0.1.2/.github/workflows/release.yml +0 -40
- {semtag-0.1.2 → semtag-0.1.3}/.ansible/.lock +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/.gitignore +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/LICENSE +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/README.md +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/SemanticVersion.py +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/pyproject.toml +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/requirements.txt +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/semtag.egg-info/dependency_links.txt +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/semtag.egg-info/entry_points.txt +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/semtag.egg-info/requires.txt +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/semtag.egg-info/top_level.txt +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/semtag.py +0 -0
- {semtag-0.1.2 → semtag-0.1.3}/setup.cfg +0 -0
|
@@ -0,0 +1,49 @@
|
|
|
1
|
+
name: Publish to PyPI
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
push:
|
|
5
|
+
tags:
|
|
6
|
+
- 'v*'
|
|
7
|
+
- '[0-9]+.[0-9]+.[0-9]+'
|
|
8
|
+
- '[0-9]+.[0-9]+.[0-9]+-*'
|
|
9
|
+
|
|
10
|
+
jobs:
|
|
11
|
+
build-and-publish:
|
|
12
|
+
runs-on: ubuntu-latest
|
|
13
|
+
permissions:
|
|
14
|
+
contents: write # Required for creating GitHub releases
|
|
15
|
+
id-token: write # Required for trusted publishing
|
|
16
|
+
|
|
17
|
+
steps:
|
|
18
|
+
- name: Checkout code
|
|
19
|
+
uses: actions/checkout@v4
|
|
20
|
+
with:
|
|
21
|
+
fetch-depth: 0 # Required for setuptools_scm to get git history
|
|
22
|
+
|
|
23
|
+
- name: Set up Python
|
|
24
|
+
uses: actions/setup-python@v5
|
|
25
|
+
with:
|
|
26
|
+
python-version: '3.x'
|
|
27
|
+
|
|
28
|
+
- name: Install dependencies
|
|
29
|
+
run: |
|
|
30
|
+
python -m pip install --upgrade pip
|
|
31
|
+
pip install build twine
|
|
32
|
+
|
|
33
|
+
- name: Build package
|
|
34
|
+
run: python -m build
|
|
35
|
+
|
|
36
|
+
- name: Check package
|
|
37
|
+
run: twine check dist/*
|
|
38
|
+
|
|
39
|
+
# Use the official PyPI publish action
|
|
40
|
+
- name: Publish to PyPI
|
|
41
|
+
uses: pypa/gh-action-pypi-publish@release/v1
|
|
42
|
+
|
|
43
|
+
# GH Release
|
|
44
|
+
- name: Create GitHub Release
|
|
45
|
+
uses: softprops/action-gh-release@v1
|
|
46
|
+
with:
|
|
47
|
+
generate_release_notes: true
|
|
48
|
+
files: |
|
|
49
|
+
dist/*
|
|
@@ -1,41 +0,0 @@
|
|
|
1
|
-
name: Publish to PyPI
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
tags:
|
|
6
|
-
- 'v*'
|
|
7
|
-
- '[0-9]+.[0-9]+.[0-9]+'
|
|
8
|
-
- '[0-9]+.[0-9]+.[0-9]+-*'
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
build-and-publish:
|
|
12
|
-
runs-on: ubuntu-latest
|
|
13
|
-
permissions:
|
|
14
|
-
contents: read
|
|
15
|
-
id-token: write # Required for trusted publishing
|
|
16
|
-
|
|
17
|
-
steps:
|
|
18
|
-
- name: Checkout code
|
|
19
|
-
uses: actions/checkout@v4
|
|
20
|
-
with:
|
|
21
|
-
fetch-depth: 0 # Required for setuptools_scm to get git history
|
|
22
|
-
|
|
23
|
-
- name: Set up Python
|
|
24
|
-
uses: actions/setup-python@v5
|
|
25
|
-
with:
|
|
26
|
-
python-version: '3.x'
|
|
27
|
-
|
|
28
|
-
- name: Install dependencies
|
|
29
|
-
run: |
|
|
30
|
-
python -m pip install --upgrade pip
|
|
31
|
-
pip install build twine
|
|
32
|
-
|
|
33
|
-
- name: Build package
|
|
34
|
-
run: python -m build
|
|
35
|
-
|
|
36
|
-
- name: Check package
|
|
37
|
-
run: twine check dist/*
|
|
38
|
-
|
|
39
|
-
# Use the official PyPI publish action
|
|
40
|
-
- name: Publish to PyPI
|
|
41
|
-
uses: pypa/gh-action-pypi-publish@release/v1
|
|
@@ -1,40 +0,0 @@
|
|
|
1
|
-
name: Create GitHub Release
|
|
2
|
-
|
|
3
|
-
on:
|
|
4
|
-
push:
|
|
5
|
-
tags:
|
|
6
|
-
- 'v*'
|
|
7
|
-
- '[0-9]+.[0-9]+.[0-9]+'
|
|
8
|
-
- '[0-9]+.[0-9]+.[0-9]+-*'
|
|
9
|
-
|
|
10
|
-
jobs:
|
|
11
|
-
release:
|
|
12
|
-
runs-on: ubuntu-latest
|
|
13
|
-
permissions:
|
|
14
|
-
contents: write # Required for creating GitHub releases
|
|
15
|
-
|
|
16
|
-
steps:
|
|
17
|
-
- name: Checkout code
|
|
18
|
-
uses: actions/checkout@v4
|
|
19
|
-
with:
|
|
20
|
-
fetch-depth: 0
|
|
21
|
-
|
|
22
|
-
- name: Set up Python
|
|
23
|
-
uses: actions/setup-python@v5
|
|
24
|
-
with:
|
|
25
|
-
python-version: '3.x'
|
|
26
|
-
|
|
27
|
-
- name: Install dependencies
|
|
28
|
-
run: |
|
|
29
|
-
python -m pip install --upgrade pip
|
|
30
|
-
pip install build
|
|
31
|
-
|
|
32
|
-
- name: Build package
|
|
33
|
-
run: python -m build
|
|
34
|
-
|
|
35
|
-
- name: Create GitHub Release
|
|
36
|
-
uses: softprops/action-gh-release@v1
|
|
37
|
-
with:
|
|
38
|
-
generate_release_notes: true
|
|
39
|
-
files: |
|
|
40
|
-
dist/*
|
|
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
|