Fix CI Test Results workflow failing to find event.json#2555
Open
jbonofre wants to merge 1 commit intoapache:mainfrom
Open
Fix CI Test Results workflow failing to find event.json#2555jbonofre wants to merge 1 commit intoapache:mainfrom
jbonofre wants to merge 1 commit intoapache:mainfrom
Conversation
dawidd6/action-download-artifact@v20 with name_is_regexp creates per-artifact subdirectories, so the event file lands at event/event-file-ubuntu-24.04/event.json rather than event/event.json. Download only the ubuntu-24.04 artifact by exact name and update the event_file path accordingly.
| with: | ||
| commit: ${{ github.event.workflow_run.head_sha }} | ||
| event_file: event/event.json | ||
| event_file: event/event-file-ubuntu-24.04/event.json |
Contributor
There was a problem hiding this comment.
A pity that event_file does not support wildcards... so we need to update this workflow file every time change the Ubuntu release.....
Maybe we could think about an alternative way: use an additional step to run
cp event/event-file-ubuntu-*/event.json event/
Member
Author
There was a problem hiding this comment.
That's a good idea. We can also use wildcard (latest) on Ubuntu matrix.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
dawidd6/action-download-artifact@v20 with name_is_regexp creates per-artifact subdirectories, so the event file lands at event/event-file-ubuntu-24.04/event.json rather than event/event.json. Download only the ubuntu-24.04 artifact by exact name and update the event_file path accordingly.