Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions .github/workflows/_python-wheels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,7 @@ jobs:

- uses: actions/upload-artifact@v4
with:
overwrite: true
name: wheels
name: wheels-${{ matrix.os }}-${{ matrix.architecture }}
path: ./wheelhouse/*.whl

upload-wheels-to-pypi:
Expand All @@ -46,8 +45,9 @@ jobs:
steps:
- uses: actions/download-artifact@v4
with:
name: wheels
pattern: wheels-*
path: dist
merge-multiple: true

- name: Publish package to PyPI
if: inputs.publishToPyPI
Expand All @@ -63,3 +63,4 @@ jobs:
user: __token__
password: ${{ secrets.TEST_PYPI_TOKEN }}
repository_url: https://test.pypi.org/legacy/
verbose: true
4 changes: 1 addition & 3 deletions .github/workflows/_release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
"libName": "libfastfec",
"exeExt": ""
},
"mac": {
"macos": {
"libExt": "dylib",
"libName": "libfastfec",
"exeExt": ""
Expand Down Expand Up @@ -74,7 +74,6 @@ jobs:
uses: actions/upload-artifact@v4
if: matrix.os != 'wasm'
with:
overwrite: true
name: fastfec-${{ matrix.os }}-${{ matrix.architecture }}-${{ inputs.version }}
path: |
fastfec-${{ matrix.os }}-${{ matrix.architecture }}-${{ inputs.version }}.zip
Expand All @@ -83,7 +82,6 @@ jobs:
uses: actions/upload-artifact@v4
if: matrix.os == 'wasm'
with:
overwrite: true
name: libfastfec-${{ matrix.os }}-${{ inputs.version }}
path: |
libfastfec-${{ inputs.version }}.${{ steps.map.outputs.libExt }}
Expand Down
2 changes: 1 addition & 1 deletion VERSION
Original file line number Diff line number Diff line change
@@ -1 +1 @@
0.2.0
0.4.0
Loading