-
Notifications
You must be signed in to change notification settings - Fork 192
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
GHA: Fix test-install workflow #6409
Conversation
@@ -239,7 +239,7 @@ jobs: | |||
# updating the requirements (in case they are inconsistent with the pyproject.toml file). | |||
- uses: actions/upload-artifact@v4 | |||
with: | |||
name: requirements.txt | |||
name: requirements-py-${{ matrix.python-version }}.txt |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
upload-artifact@v4 no longer allows uploading multiple artifacts under the same name.
Thanks @danielhollas . What was the actual main failure here? Was it the unsupported use of |
Well, there were three fatal failures, but the one that ruled them all was the uses line, which made the whole workflow invalid which hid the other issues. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks @danielhollas
* The `uses` key requires full relative path when using a local path to include, i.e., the leading `./` is required in the following: used: `./.github/actions/install-aiida-core * The action `upload-artifact@v4` no longer supports uploading multiple files with the same name, so they now include the Python version. * The Sphinx extension test is made more robust by making it insensitive to the version of docutils used.
If a workflow file is faulty, GitHub UI doesn't even bother showing the workflow at all on PR page. Thanks, I hate it.
https://github.com/aiidateam/aiida-core/actions/runs/9182083348