Skip to content

Commit

Permalink
Bump artifact upload/download version. #220
Browse files Browse the repository at this point in the history
  • Loading branch information
amykyta3 committed Dec 9, 2024
1 parent 7d48320 commit ca6d1f9
Showing 1 changed file with 6 additions and 7 deletions.
13 changes: 6 additions & 7 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,6 @@ jobs:
- "3.10"
- "3.11"
- "3.12"
- "3.13"
include:
- os: ubuntu-latest

Expand Down Expand Up @@ -95,7 +94,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: "3.10"

- name: Install dependencies
run: |
Expand All @@ -117,7 +116,7 @@ jobs:
- name: Set up Python
uses: actions/setup-python@v4
with:
python-version: 3.8
python-version: "3.10"

- name: Install dependencies
run: |
Expand Down Expand Up @@ -182,7 +181,7 @@ jobs:
# Signal setup.py to fail if binary build fails
SYSTEMRDL_REQUIRE_BINARY_BUILD: ~

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: ./wheelhouse/*.whl

Expand All @@ -200,12 +199,12 @@ jobs:
- uses: actions/setup-python@v4
name: Install Python
with:
python-version: 3.8
python-version: "3.10"

- name: Build sdist
run: python setup.py sdist

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
path: dist/*.tar.gz

Expand All @@ -220,7 +219,7 @@ jobs:
# Only publish when a GitHub Release is created.
if: github.event_name == 'release'
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: artifact
path: dist
Expand Down

0 comments on commit ca6d1f9

Please sign in to comment.