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.
@@ -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/*
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: semtag
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A tool for managing semantic version tags in git repositories
5
5
  Author-email: Mateusz Mikrut <mateusz.mikrut@gmail.com>
6
6
  License-Expression: MIT
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: semtag
3
- Version: 0.1.1
3
+ Version: 0.1.2
4
4
  Summary: A tool for managing semantic version tags in git repositories
5
5
  Author-email: Mateusz Mikrut <mateusz.mikrut@gmail.com>
6
6
  License-Expression: MIT
@@ -7,6 +7,7 @@ requirements.txt
7
7
  semtag.py
8
8
  .ansible/.lock
9
9
  .github/workflows/publish.yml
10
+ .github/workflows/release.yml
10
11
  semtag.egg-info/PKG-INFO
11
12
  semtag.egg-info/SOURCES.txt
12
13
  semtag.egg-info/dependency_links.txt
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