We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a73ed68 commit 6eb4fc7Copy full SHA for 6eb4fc7
.github/workflows/ci.yml
@@ -95,10 +95,10 @@ jobs:
95
id: clear-container-name
96
if: failure() || success()
97
run: |
98
- # Output the container name, but with ":" replaced by "-"
99
- # This is needed to avoid issues with the upload-artifact action
100
- CONTAINER_NAME=$(echo "${{ matrix.container }}" | tr ':' '-')
101
- echo "CONTAINER_NAME=$CONTAINER_NAME" >> $GITHUB_OUTPUT
+ # Output the container name, but with ":" and "/" replaced by "-"
+ # This is needed to avoid issues with the upload-artifact action
+ CONTAINER_NAME=$(echo "${{ matrix.container }}" | tr ':/' '--')
+ echo "CONTAINER_NAME=$CONTAINER_NAME" >> $GITHUB_OUTPUT
102
103
- name: Upload log
104
uses: actions/[email protected]
0 commit comments