File tree 4 files changed +12
-10
lines changed
4 files changed +12
-10
lines changed Original file line number Diff line number Diff line change @@ -145,6 +145,7 @@ jobs:
145
145
with :
146
146
pattern : cpp-linter-*
147
147
path : dist
148
+ merge-multiple : true
148
149
- name : Create a Github Release
149
150
env :
150
151
GH_TOKEN : ${{ github.token }}
Original file line number Diff line number Diff line change 71
71
with :
72
72
target : ${{ matrix.platform.target }}
73
73
args : --release --out dist --find-interpreter --manifest-path py-binding/Cargo.toml ${{ steps.is-openssl-vendored.outputs.enabled }}
74
- sccache : ' true'
74
+ # sccache: 'true'
75
75
manylinux : auto
76
76
before-script-linux : |
77
77
case "${{ matrix.platform.target }}" in
@@ -170,13 +170,15 @@ jobs:
170
170
id-token : write
171
171
steps :
172
172
- uses : actions/download-artifact@v4
173
+ with :
174
+ pattern : wheels-*
175
+ path : dist
176
+ merge-multiple : true
173
177
- name : Publish to PyPI
174
- uses : PyO3/maturin-action@v1
175
- env :
178
+ uses : pypa/gh-action-pypi-publish@0ab0b79471669eb3a4d647e625009c62f9f3b241
179
+ with :
180
+ attestations : true
181
+ skip-existing : true
176
182
# This workflow is registered as a trusted publisher (for test-pypi and pypi).
177
183
# A token should not be required (and actually is discouraged with trusted publishers).
178
- # MATURIN_PYPI_TOKEN: ${{ contains(github.ref_name, 'rc') && secrets.TEST_PYPI_API_TOKEN || secrets.PYPI_API_TOKEN }}
179
- MATURIN_REPOSITORY_URL : ${{ contains(github.ref_name, 'rc') && 'https://test.pypi.org/legacy' || 'https://upload.pypi.org/legacy' }}
180
- with :
181
- command : upload
182
- args : --non-interactive --skip-existing wheels-*/*
184
+ repository-url : ${{ contains(github.ref_name, 'rc') && 'https://test.pypi.org/legacy/' || 'https://upload.pypi.org/legacy/' }}
Original file line number Diff line number Diff line change @@ -12,5 +12,4 @@ authors = [
12
12
]
13
13
description = " Run clang-format and clang-tidy on a batch of files."
14
14
homepage = " https://cpp-linter.github.io/cpp_linter_rs"
15
- repository = " https://github.com/cpp-linter/cpp_linter_rs"
16
15
license = " MIT"
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ edition = "2021"
4
4
readme = " README.md"
5
5
keywords = [" clang-tidy" , " clang-format" , " linter" ]
6
6
categories = [" command-line-utilities" , " development-tools" , " filesystem" ]
7
- respository.workspace = true
7
+ repository = " https://github.com/cpp-linter/cpp_linter_rs "
8
8
version.workspace = true
9
9
authors.workspace = true
10
10
description.workspace = true
You can’t perform that action at this time.
0 commit comments