We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 231ef81 commit 22bd28aCopy full SHA for 22bd28a
.github/workflows/runner-gradle-profiler/action.yaml
@@ -114,9 +114,16 @@ runs:
114
DEVELOCITY_ACCESS_KEY: ${{ inputs.api-key }}
115
CI_URL_CACHE_NODE: ${{ inputs.cache-url }}
116
117
+ - name: Sanitize variant name
118
+ id: sanitize
119
+ run: |
120
+ VARIANT="${{ inputs.variant }}"
121
+ SAFE_VARIANT="${VARIANT//\//-}"
122
+ echo "safe_variant=$SAFE_VARIANT" >> $GITHUB_OUTPUT
123
+
124
- name: Archive Profiler Artifacts
125
uses: actions/upload-artifact@v4
126
with:
- name: profiler-${{ inputs.variant-prefix }}${{ inputs.variant.replace('/', '-') }}
127
+ name: profiler-${{ inputs.variant-prefix }}${{ steps.sanitize.outputs.safe_variant }}
128
path: |
129
profile-out/*
0 commit comments