Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: add examples for online/offline verification #1

Merged
merged 3 commits into from
Nov 7, 2024
Merged
Changes from 1 commit
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
Prev Previous commit
fix: make sure manylinux is added to artifact name
  • Loading branch information
cedrictq committed Nov 7, 2024
commit 29b78bb29f79cd4171fc66afed767427bf856aff
5 changes: 1 addition & 4 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -79,10 +79,9 @@ jobs:
manylinux: ${{ matrix.platform.manylinux }}
before-script-linux: ${{ matrix.platform.before }}
- name: Upload wheels
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: wheels-${{ matrix.platform.runner }}-${{ matrix.platform.target }}
name: wheels-${{ matrix.platform.runner }}-${{ matrix.platform.manylinux }}-${{ matrix.platform.target }}
path: dist

sdist:
Expand All @@ -95,7 +94,6 @@ jobs:
command: sdist
args: --out dist
- name: Upload sdist
if: github.event_name != 'pull_request'
uses: actions/upload-artifact@v4
with:
name: wheels-sdist
Expand All @@ -104,7 +102,6 @@ jobs:
release:
name: Release
runs-on: ubuntu-latest
if: ${{ github.ref == format('refs/heads/{0}', github.event.repository.default_branch) }}
needs: [build, sdist]
permissions:
id-token: write
Expand Down