Skip to content

Commit

Permalink
Merge pull request #243 from yt-project/dependabot/github_actions/dot…
Browse files Browse the repository at this point in the history
…-github/workflows/actions-8204c6933e

Bump the actions group in /.github/workflows with 2 updates
  • Loading branch information
neutrinoceros committed Jan 1, 2024
2 parents 0837a5d + c942f8f commit 426f629
Showing 1 changed file with 7 additions and 6 deletions.
13 changes: 7 additions & 6 deletions .github/workflows/wheels.yaml
Expand Up @@ -39,9 +39,9 @@ jobs:
CIBW_ENVIRONMENT: "LDFLAGS='-static-libstdc++'"
CIBW_BUILD_VERBOSITY: 1

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: wheels
name: wheels-${{ matrix.os }}
path: ./dist/*.whl

build_sdist:
Expand All @@ -53,7 +53,7 @@ jobs:
- name: Build sdist
run: pipx run build --sdist

- uses: actions/upload-artifact@v3
- uses: actions/upload-artifact@v4
with:
name: tarball
path: dist/*.tar.gz
Expand All @@ -64,15 +64,16 @@ jobs:
# upload to PyPI on every tag starting with 'yt_astro_analysis-'
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags/yt_astro_analysis-')
steps:
- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: tarball
path: dist

- uses: actions/download-artifact@v3
- uses: actions/download-artifact@v4
with:
name: wheels
path: dist
pattern: wheels-*
merge-multiple: true

- uses: pypa/gh-action-pypi-publish@v1.8.11
with:
Expand Down

0 comments on commit 426f629

Please sign in to comment.