Skip to content

Commit

Permalink
switch to new workflow comaptible action container
Browse files Browse the repository at this point in the history
  • Loading branch information
gijzelaerr committed Jul 5, 2024
1 parent 3cd7353 commit e515236
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 13 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/doc.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Doc
name: Documentation
on:
push:
branches: [master]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/linux-test-with-deb.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Linux Test all Pythons with Debian packages
name: Test with Debian packages
on:
push:
branches: [master]
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/osx-test-with-brew.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: OS X Test
name: Test on macOS with brew
on:
push:
branches: [master]
Expand Down
23 changes: 14 additions & 9 deletions .github/workflows/publish-to-test-pypi.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,25 +26,30 @@ jobs:
name: Publish distribution 📦 to TestPyPI
runs-on: ubuntu-latest
steps:
- name: Download macOS artifacts
uses: actions/download-artifact@v4
- name: "Download macOS artifacts"
uses: dawidd6/action-download-artifact@v6
with:
name: wheels-macOS
workflow: "Build and test wheels osx/amd64"
path: dist
- name: Download Linux artifacts
uses: actions/download-artifact@v4
- name: "Download Linux/amd64 artifacts"
uses: dawidd6/action-download-artifact@v6
with:
name: wheels-Linux
workflow: "Build and test wheels linux/amd64"
path: dist
- name: "Download Linux/arm64 artifacts"
uses: dawidd6/action-download-artifact@v6
with:
workflow: "Build and test wheels linux/arm64"
path: dist
- name: Download Windows artifacts
uses: actions/download-artifact@v4
uses: dawidd6/action-download-artifact@v6
with:
name: wheels-Windows
workflow: "Build and test wheels windows/amd64"
path: dist
- name: Combine artifacts
uses: actions/upload-artifact@v4
with:
name: all-wheels
workflow: all-wheels
path: dist
- name: Publish distribution 📦 to TestPyPI
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
2 changes: 1 addition & 1 deletion doc/development.rst
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
===========
development
Development
===========

Github
Expand Down

0 comments on commit e515236

Please sign in to comment.