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.
@@ -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,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: semtag
3
- Version: 0.1.2
3
+ Version: 0.1.3
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.2
3
+ Version: 0.1.3
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,7 +7,6 @@ requirements.txt
7
7
  semtag.py
8
8
  .ansible/.lock
9
9
  .github/workflows/publish.yml
10
- .github/workflows/release.yml
11
10
  semtag.egg-info/PKG-INFO
12
11
  semtag.egg-info/SOURCES.txt
13
12
  semtag.egg-info/dependency_links.txt
@@ -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