We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 244c672 commit 49b3487Copy full SHA for 49b3487
.github/workflows/binary-builds.yml
@@ -139,8 +139,6 @@ jobs:
139
- uses: actions/setup-python@v5
140
with:
141
python-version: '3.x'
142
- - name: Increment version
143
- run: python .github/workflows/replace_version_spec.py --new-version=${{ github.ref_name }}
144
- run: cargo package
145
- name: Download built assets
146
uses: actions/download-artifact@v4
@@ -153,7 +151,6 @@ jobs:
153
151
run: |
154
152
files=$(ls dist/cpp-linter*)
155
gh release create ${{ github.ref_name }} ${{ contains(github.ref_name, 'rc') && '--prerelease' || '' }} --generate-notes $files
156
- - run: cargo publish -p cpp-linter-lib
157
- working-directory: cpp-linter-lib
+ - run: cargo publish -p cpp-linter
158
env:
159
CARGO_REGISTRY_TOKEN: ${{ secrets.CARGO_REGISTRY_TOKEN }}
0 commit comments