Skip to content

Commit

Permalink
Update Artifacts upload download
Browse files Browse the repository at this point in the history
  • Loading branch information
wpreimes committed May 4, 2024
1 parent 73f3f6e commit c945ccd
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 6 deletions.
8 changes: 6 additions & 2 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -84,9 +84,9 @@ jobs:
fi
ls .artifacts/dist
- name: Upload Artifacts
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: Artifacts
name: Artifacts-${{ matrix.python-version }}-${{ matrix.os }}
path: .artifacts/*
coveralls:
name: Submit Coveralls 👚
Expand All @@ -111,6 +111,10 @@ jobs:
echo "GITHUB_REPOSITORY = $GITHUB_REPOSITORY"
- name: Download Artifacts
uses: actions/download-artifact@v4
with:
path: Artifacts
pattern: Artifacts-*
merge-multiple: true
- name: Display downloaded files
run: ls -aR
- name: Upload to PyPI
Expand Down
8 changes: 4 additions & 4 deletions setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -6,12 +6,12 @@
name = repurpose
description = Package for image to timeseries to image conversion
author = TU Wien
author-email = [email protected]
author_email = [email protected]
license = mit
long-description = file: README.rst
long-description-content-type = text/x-rst; charset=UTF-8
long_description = file: README.rst
long_description_content_type = text/x-rst; charset=UTF-8
url = https://repurpose.readthedocs.io/en/latest/
project-urls =
project_urls =
Documentation = https://repurpose.readthedocs.io/en/latest/
# Change if running only on Windows, Mac or Linux (comma-separated)
platforms = any
Expand Down

0 comments on commit c945ccd

Please sign in to comment.