Skip to content
Merged
Show file tree
Hide file tree
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
6 changes: 3 additions & 3 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -349,7 +349,7 @@ jobs:

- name: Upload artifact
if: env.SHOULD_RUN == 1
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
continue-on-error: ${{ env.UPLOADED == '1' }}
with:
overwrite: true
Expand Down Expand Up @@ -430,7 +430,7 @@ jobs:
fi

- name: Upload to artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
continue-on-error: ${{ env.UPLOADED == '1' }}
with:
name: ${{ env.WHL_NAME }}
Expand Down Expand Up @@ -518,7 +518,7 @@ jobs:
twine check dist/$whl

- name: Upload to artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: ${{ env.WHL_NAME }}
path: dist/${{ env.WHL_NAME }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/unit_tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -295,7 +295,7 @@ jobs:
run: curl -s -F "runid=${{ github.run_id }}" -F "repo=${{ env.repo }}" -F "ref=${{ env.ref }}" -F "sha256=${{ env.SOURCE_HASH }}" -F "file=@dist/gptqmodel_source.tar.gz" http://$RUNNER/gpu/whl/upload

- name: Upload source to github artifact
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: source
path: dist/gptqmodel_source.tar.gz
Expand Down Expand Up @@ -338,7 +338,7 @@ jobs:

- name: Upload wheel to github artifact
if: github.event.inputs.artifact_id == '' && !cancelled()
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v5
with:
name: whl
path: dist/${{ env.WHL_NAME }}
Expand Down Expand Up @@ -440,7 +440,7 @@ jobs:

# - name: Download source from github
# if: env.SOURCE_DOWNLOADED == '' && !cancelled()
# uses: actions/download-artifact@v5
# uses: actions/download-artifact@v6
# with:
# name: source
# path: dist
Expand Down Expand Up @@ -472,7 +472,7 @@ jobs:

- name: Download artifact from github
if: env.WHL_DOWNLOADED == '' && !cancelled()
uses: actions/download-artifact@v5
uses: actions/download-artifact@v6
with:
name: whl
path: dist
Expand Down