@@ -38,30 +38,30 @@ jobs:
38
38
- name : Checkout repository
39
39
uses : actions/checkout@v4
40
40
41
- - name : Set up Python
42
- uses : actions/setup-python@v5
43
- with :
44
- python-version : ' 3.10'
45
-
46
- - name : Install dependencies
47
- run : python -m pip install --upgrade pip setuptools wheel
48
-
49
- - name : Build package
50
- run : python setup.py sdist bdist_wheel
51
-
52
- - name : Publish package
53
- uses : pypa/gh-action-pypi-publish@release/v1
54
- with :
55
- user : ${{ secrets.PYPI_USERNAME }}
56
- password : ${{ secrets.PYPI_PASSWORD }}
57
-
58
41
- name : Generate versions
59
42
uses : HardNorth/github-version-generate@v1
60
43
with :
61
44
version-source : file
62
45
version-file : ${{ env.VERSION_FILE }}
63
46
version-file-extraction-pattern : ${{ env.VERSION_EXTRACT_PATTERN }}
64
47
48
+ - name : Set up Python
49
+ uses : actions/setup-python@v5
50
+ with :
51
+ python-version : ' 3.10'
52
+
53
+ # - name: Install dependencies
54
+ # run: python -m pip install --upgrade pip setuptools wheel
55
+
56
+ # - name: Build package
57
+ # run: python setup.py sdist bdist_wheel
58
+ #
59
+ # - name: Publish package
60
+ # uses: pypa/gh-action-pypi-publish@release/v1
61
+ # with:
62
+ # user: ${{ secrets.PYPI_USERNAME }}
63
+ # password: ${{ secrets.PYPI_PASSWORD }}
64
+
65
65
- name : Setup git credentials
66
66
uses : oleksiyrudenko/gha-git-credentials@v2-latest
67
67
with :
0 commit comments