Skip to content

Commit

Permalink
Update build_publish.yml
Browse files Browse the repository at this point in the history
  • Loading branch information
ajinabraham authored Oct 26, 2024
1 parent 75f0fe0 commit 92af1b6
Showing 1 changed file with 6 additions and 6 deletions.
12 changes: 6 additions & 6 deletions .github/workflows/build_publish.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
os: [ubuntu-latest, windows-latest, macOS-latest]

steps:
- uses: actions/checkout@v3
- uses: actions/checkout@v4.2.2

- uses: actions/setup-python@v3
- uses: actions/setup-python@v5.3.0
name: Install Python

- name: Install cibuildwheel
run: python -m pip install cibuildwheel==2.15.0
run: python -m pip install cibuildwheel==2.21.3

- name: Get submodules
run: git submodule update --init --recursive
Expand All @@ -38,7 +38,7 @@ jobs:
env:
CIBW_ARCHS_MACOS: "auto x86_64 universal2 arm64"

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4.4.3
name: Upload wheels
with:
name: wheels
Expand All @@ -51,15 +51,15 @@ jobs:

steps:
- name: Set up Python
uses: actions/setup-python@v3
uses: actions/setup-python@v5.3.0
with:
python-version: '3.x'
- name: Install twine
run: |
python -m pip install --upgrade pip
pip install twine
- name: Download Artifacts
uses: actions/download-artifact@v3
uses: actions/download-artifact@v4.1.8
with:
name: wheels
path: ./wheels
Expand Down

0 comments on commit 92af1b6

Please sign in to comment.