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

Fixing release workflow. #513

Merged
merged 1 commit into from
Aug 5, 2024
Merged
Changes from all commits
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
53 changes: 32 additions & 21 deletions .github/workflows/python-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,10 @@ jobs:
name: build on ${{ matrix.platform || matrix.os }} (${{ matrix.target }} - ${{ matrix.manylinux || 'auto' }})
# only run on push to main and on release
needs: [lock_exists]

if: startsWith(github.ref, 'refs/tags/') || github.ref == 'refs/heads/main' || contains(github.event.pull_request.labels.*.name, 'Full Build')
outputs:
artifact: ${{ steps.artifact-upload-step.outputs.artifact-id }}
strategy:
fail-fast: false
matrix:
Expand Down Expand Up @@ -124,17 +127,17 @@ jobs:
- run: twine check --strict dist/*
working-directory: ./bindings/python

- name: Upload wheels
shell: bash
run: |
pip install awscli
aws s3 sync --exact-timestamps ./bindings/python/dist "s3://safetensors-releases/python/$DIST_DIR"

# - uses: actions/upload-artifact@v3
# working-directory: ./bindings/python/
# with:
# name: pypi_files
# path: dist
# - name: Upload wheels
# shell: bash
# run: |
# pip install awscli
# aws s3 sync --exact-timestamps ./bindings/python/dist "s3://safetensors-releases/python/$DIST_DIR"

- uses: actions/upload-artifact@v4
id: artifact-upload-step
with:
name: pypi_files-${{ matrix.os }}-${{ matrix.target }}-${{ matrix.manylinux }}
path: bindings/python/dist
build-sdist:
name: build sdist
needs: [lock_exists]
Expand All @@ -147,11 +150,15 @@ jobs:
command: sdist
args: --out dist
rust-toolchain: stable
- name: Upload wheels
shell: bash
run: |
pip install awscli
aws s3 sync --exact-timestamps ./bindings/python/dist "s3://safetensors-releases/python/$DIST_DIR"
# - name: Upload wheels
# shell: bash
# run: |
# pip install awscli
# aws s3 sync --exact-timestamps ./bindings/python/dist "s3://safetensors-releases/python/$DIST_DIR"
- uses: actions/upload-artifact@v4
with:
name: pypi_files-src
path: ./bindings/python/dist


upload_package:
Expand All @@ -168,11 +175,15 @@ jobs:
python-version: "3.12"
architecture: x64

- name: Retrieve all wheels
shell: bash
run: |
pip install awscli
aws s3 sync "s3://safetensors-releases/python/$DIST_DIR" ./bindings/python/dist
# - name: Retrieve all wheels
# shell: bash
# run: |
# pip install awscli
# aws s3 sync "s3://safetensors-releases/python/$DIST_DIR" ./bindings/python/dist
- uses: actions/download-artifact@v4
with:
path: ./bindings/python/dist
merge-multiple: true

- name: Upload to PyPi
working-directory: ./bindings/python
Expand Down
Loading