Skip to content

Commit

Permalink
Use dist, not dist/
Browse files Browse the repository at this point in the history
  • Loading branch information
cclauss authored Nov 3, 2024
1 parent a47ed5f commit b340b4f
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ jobs:
strategy:
fail-fast: false
max-parallel: 4
matrix: # macos-13 in Intel, macos-14 is Apple Silicon ARM
os: [macos-13, macos-14, ubuntu-latest, windows-latest]
matrix: # macos-13 in Intel, macos-latest is Apple Silicon ARM
os: [macos-13, macos-latest, ubuntu-latest, windows-latest]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
Expand Down Expand Up @@ -96,7 +96,7 @@ jobs:
- name: Upload dist directory as artifact
uses: actions/upload-artifact@v4
with:
path: dist/
path: dist

pypi-publish:
needs: [build]
Expand All @@ -112,5 +112,6 @@ jobs:
- name: Download dist artifact
uses: actions/download-artifact@v4
with:
path: dist/
path: dist
- run: ls dist
- uses: pypa/gh-action-pypi-publish@release/v1

0 comments on commit b340b4f

Please sign in to comment.