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 4a8f37a commit dee6dfeCopy full SHA for dee6dfe
.github/workflows/build.yml
@@ -1613,8 +1613,14 @@ jobs:
1613
1614
- name: Binary Key
1615
id: binary-key
1616
+ if: contains(matrix.container, ':')
1617
run: |
- echo "key=profiling-node-binaries-${GITHUB_SHA}-${{ matrix.node }}-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.container }}" | sed 's/:/-/g' >> $GITHUB_OUTPUT
1618
+ key=profiling-node-binaries-${GITHUB_SHA}-${{ matrix.node }}-${{ matrix.os }}-${{ matrix.arch }}-${{ matrix.container }}
1619
+ if [[ "$key" == *:* ]]; then
1620
+ echo "key=$(echo $key | sed 's/:/-/g')" >> $GITHUB_OUTPUT
1621
+ else
1622
+ echo "key=$key" >> $GITHUB_OUTPUT
1623
+ fi
1624
1625
- name: Archive Binary
1626
uses: actions/upload-artifact@v4
0 commit comments