Skip to content
Merged
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
12 changes: 6 additions & 6 deletions .github/workflows/ci_cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
fetch-depth: 0

- name: Set up Python
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: "3.*"

Expand All @@ -50,7 +50,7 @@ jobs:
python -c "import packaging.version as v; v.Version(\"$(python -m setuptools_scm)\")"

- name: Upload artifacts
uses: actions/upload-artifact@v4
uses: actions/upload-artifact@v7
with:
path: dist/*
name: dist
Expand Down Expand Up @@ -88,7 +88,7 @@ jobs:

- name: Set up Python
if: matrix.type == 'apt'
uses: actions/setup-python@v5
uses: actions/setup-python@v6
with:
python-version: ${{ matrix.python }}

Expand Down Expand Up @@ -116,7 +116,7 @@ jobs:
sudo apt-get install --no-install-recommends libsdformat13 gz-tools2

- name: Download Python packages
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: dist
name: dist
Expand Down Expand Up @@ -152,7 +152,7 @@ jobs:
steps:

- name: Download Python packages
uses: actions/download-artifact@v4
uses: actions/download-artifact@v8
with:
path: dist
name: dist
Expand All @@ -162,7 +162,7 @@ jobs:

- name: Publish to PyPI
if: |
github.repository == 'ami-iit/rod' &&
github.repository == 'gbionics/rod' &&
((github.event_name == 'push' && github.ref == 'refs/heads/main') ||
(github.event_name == 'release' && github.event.action == 'published'))
uses: pypa/gh-action-pypi-publish@release/v1
Expand Down
Loading