We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 400e595 commit 820ef22Copy full SHA for 820ef22
.github/workflows/publish.yaml
@@ -19,7 +19,7 @@ jobs:
19
with:
20
python-version: "3.x"
21
- name: Install pypa/build
22
- run: python -m pip install --user build twine
+ run: python -m pip install build twine
23
- name: Add '.devN' to version for non-tag builds
24
if: ${{ ! startsWith(github.ref, 'refs/tags/') }}
25
run:
@@ -29,7 +29,7 @@ jobs:
29
- name: Build a binary wheel and a source tarball
30
run: python -m build
31
- name: Twine check the distribution packages
32
- run: python -m twine check --strict dist/yamllint-*
+ run: python -Im twine check --strict dist/yamllint-*
33
- name: Store the distribution packages
34
uses: actions/upload-artifact@v4
35
0 commit comments