Skip to content

Commit

Permalink
ci: upload fix
Browse files Browse the repository at this point in the history
  • Loading branch information
T-Dynamos committed Jan 9, 2025
1 parent 5b65e11 commit bd8a2e0
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/default.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,6 @@ jobs:
os: [windows-latest, macos-latest, macos-14]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
dist: [bdist_wheel]
exclude:
- os: macos-14
python-version: '3.9'
steps:
- name: Set up Python ${{ matrix.python-version }}
uses: actions/setup-python@v4
Expand All @@ -39,19 +36,23 @@ jobs:
- name: Upload artifacts
uses: actions/upload-artifact@v4
with:
name: "artifact-python${{ matrix.python-version }}-os${{ matrix.os }}.tar.gz"
name: "artifact-cp${{ matrix.python-version }}-${{ matrix.os }}.tar.gz"
path: dist
deploy:
name: Publish to PyPI
runs-on: ubuntu-latest
needs: build
strategy:
matrix:
os: [windows-latest, macos-latest, macos-14]
python-version: ['3.9', '3.10', '3.11', '3.12', '3.13']
steps:
- name: Checkout
uses: actions/checkout@v2
- name: Download artifacts
uses: actions/download-artifact@v4
with:
name: "artifact-python${{ matrix.python-version }}-os${{ matrix.os }}.tar.gz"
name: "artifact-cp${{ matrix.python-version }}-${{ matrix.os }}.tar.gz"
path: dist
- name: Publish to PyPI
uses: pypa/[email protected]
Expand Down

0 comments on commit bd8a2e0

Please sign in to comment.