Skip to content

Commit

Permalink
Fixed yaml syntax error
Browse files Browse the repository at this point in the history
  • Loading branch information
sergiopasra committed Oct 18, 2023
1 parent d1b0a96 commit 47edec6
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 6 deletions.
3 changes: 1 addition & 2 deletions .github/workflows/manual.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
# Build package wheels and upload to Test PyPI
name: Build wheels and upload to Test PyPI
on:
workflow_dispatch
Expand Down Expand Up @@ -38,7 +37,7 @@ jobs:
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-*
CIBW_SKIP: *_i686
CIBW_SKIP: '*_i686'

- uses: actions/upload-artifact@v3
with:
Expand Down
6 changes: 2 additions & 4 deletions .github/workflows/upload.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,6 @@
# Build package wheels and upload to PyPI
name: Build wheels and upload to PyPI

on:
workflow_dispatch
on: workflow_dispatch

jobs:
build_sdist:
Expand Down Expand Up @@ -39,7 +37,7 @@ jobs:
uses: pypa/cibuildwheel@v2.16.2
env:
CIBW_BUILD: cp39-* cp310-* cp311-* cp312-*
CIBW_SKIP: *_i686
CIBW_SKIP: '*_i686'

- uses: actions/upload-artifact@v3
with:
Expand Down

0 comments on commit 47edec6

Please sign in to comment.