semtag 0.1.1__tar.gz → 0.1.2__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.1 → semtag-0.1.2}/.github/workflows/publish.yml +0 -8
- semtag-0.1.2/.github/workflows/release.yml +40 -0
- {semtag-0.1.1 → semtag-0.1.2}/PKG-INFO +1 -1
- {semtag-0.1.1 → semtag-0.1.2}/semtag.egg-info/PKG-INFO +1 -1
- {semtag-0.1.1 → semtag-0.1.2}/semtag.egg-info/SOURCES.txt +1 -0
- {semtag-0.1.1 → semtag-0.1.2}/.ansible/.lock +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/.gitignore +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/LICENSE +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/README.md +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/SemanticVersion.py +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/pyproject.toml +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/requirements.txt +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/semtag.egg-info/dependency_links.txt +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/semtag.egg-info/entry_points.txt +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/semtag.egg-info/requires.txt +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/semtag.egg-info/top_level.txt +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/semtag.py +0 -0
- {semtag-0.1.1 → semtag-0.1.2}/setup.cfg +0 -0
|
@@ -39,11 +39,3 @@ jobs:
|
|
|
39
39
|
# Use the official PyPI publish action
|
|
40
40
|
- name: Publish to PyPI
|
|
41
41
|
uses: pypa/gh-action-pypi-publish@release/v1
|
|
42
|
-
|
|
43
|
-
# Use the GitHub Release action to creata release
|
|
44
|
-
- name: Create GitHub Release
|
|
45
|
-
uses: softprops/action-gh-release@v1
|
|
46
|
-
with:
|
|
47
|
-
generate_release_notes: true
|
|
48
|
-
files: |
|
|
49
|
-
dist/*
|
|
@@ -0,0 +1,40 @@
|
|
|
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
|