Skip to content

Commit

Permalink
Remove the sdist job
Browse files Browse the repository at this point in the history
  • Loading branch information
lukipuki committed May 24, 2024
1 parent f47b7b3 commit 5ebbe08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 32 deletions.
17 changes: 1 addition & 16 deletions .github/workflows/linux-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,26 +53,11 @@ jobs:
name: wheels
path: dist

sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [linux, sdist]
needs: linux
steps:
- uses: actions/download-artifact@v3
with:
Expand Down
17 changes: 1 addition & 16 deletions .github/workflows/windows-python.yml
Original file line number Diff line number Diff line change
Expand Up @@ -43,26 +43,11 @@ jobs:
name: wheels
path: dist

sdist:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Build sdist
uses: PyO3/maturin-action@v1
with:
command: sdist
args: --out dist
- name: Upload sdist
uses: actions/upload-artifact@v3
with:
name: wheels
path: dist

release:
name: Release
runs-on: ubuntu-latest
if: "startsWith(github.ref, 'refs/tags/')"
needs: [windows, sdist]
needs: windows
steps:
- uses: actions/download-artifact@v3
with:
Expand Down

0 comments on commit 5ebbe08

Please sign in to comment.