Skip to content

Commit e1eb692

Browse files
committed
DEBUGGING
1 parent 27d05bd commit e1eb692

File tree

1 file changed

+3
-74
lines changed

1 file changed

+3
-74
lines changed

.github/workflows/publish.yaml

Lines changed: 3 additions & 74 deletions
Original file line numberDiff line numberDiff line change
@@ -18,84 +18,13 @@ jobs:
1818
with:
1919
python-version: "3.x"
2020
- name: Install pypa/build
21-
run: python -m pip install --user build
21+
run: python -m pip install --user build==1.2.1 setuptools==69.2.0
2222
- name: Build a binary wheel and a source tarball
2323
run: python -m build
24+
- run: ls dist
25+
- run: tar -tvf dist/yamllint-1.36.1.tar.gz
2426
- name: Store the distribution packages
2527
uses: actions/upload-artifact@v4
2628
with:
2729
name: python-package-distributions
2830
path: dist/
29-
30-
publish-to-testpypi:
31-
name: Publish distribution package to TestPyPI
32-
needs: build
33-
runs-on: ubuntu-latest
34-
environment:
35-
name: testpypi
36-
url: https://test.pypi.org/p/yamllint
37-
permissions:
38-
id-token: write
39-
steps:
40-
- name: Download all the dists
41-
uses: actions/download-artifact@v4
42-
with:
43-
name: python-package-distributions
44-
path: dist/
45-
- name: Publish distribution package
46-
uses: pypa/gh-action-pypi-publish@release/v1
47-
with:
48-
repository-url: https://test.pypi.org/legacy/
49-
50-
publish-to-pypi:
51-
name: Publish distribution package to PyPI
52-
if: startsWith(github.ref, 'refs/tags/') # only for tags
53-
needs: build
54-
runs-on: ubuntu-latest
55-
environment:
56-
name: pypi
57-
url: https://pypi.org/p/yamllint
58-
permissions:
59-
id-token: write
60-
steps:
61-
- name: Download all the dists
62-
uses: actions/download-artifact@v4
63-
with:
64-
name: python-package-distributions
65-
path: dist/
66-
- name: Publish distribution package
67-
uses: pypa/gh-action-pypi-publish@release/v1
68-
69-
github-release:
70-
name: Sign and upload GitHub Release
71-
needs: publish-to-pypi
72-
runs-on: ubuntu-latest
73-
permissions:
74-
contents: write
75-
id-token: write
76-
steps:
77-
- name: Download all the dists
78-
uses: actions/download-artifact@v4
79-
with:
80-
name: python-package-distributions
81-
path: dist/
82-
- name: Sign the dists with Sigstore
83-
uses: sigstore/[email protected]
84-
with:
85-
inputs: dist/yamllint-*.tar.gz dist/yamllint-*.whl
86-
- name: Create GitHub Release
87-
env:
88-
GITHUB_TOKEN: ${{ github.token }}
89-
run:
90-
gh release create
91-
"$GITHUB_REF_NAME"
92-
--repo "$GITHUB_REPOSITORY"
93-
--notes ""
94-
- name: Upload artifact signatures to GitHub Release
95-
env:
96-
GITHUB_TOKEN: ${{ github.token }}
97-
run:
98-
gh release upload
99-
"$GITHUB_REF_NAME"
100-
dist/**
101-
--repo "$GITHUB_REPOSITORY"

0 commit comments

Comments
 (0)