Skip to content

Commit cf02335

Browse files
authored
Fix typo in create_draft_release (#7338)
## Summary of changes Fixes a typo that caused release to fail ## Reason for change The release failed because there was a typo ## Implementation details Fix the typo ## Test coverage No
1 parent 3c4f67f commit cf02335

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/create_draft_release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -138,7 +138,7 @@ jobs:
138138
dotnet nuget push "*.${{steps.versions.outputs.full_version}}*.nupkg" --api-key ${{ secrets.NUGET_API_KEY }} --source https://api.nuget.org/v3/index.json
139139
140140
- name: "Copy gitlab artifacts to artifacts_path"
141-
run: cp "${{steps.assets.outputs.gitlab_artifacts_path}}/*.zip" "${{steps.assets.outputs.artifacts_path}}/""
141+
run: cp "${{steps.assets.outputs.gitlab_artifacts_path}}/*.zip" "${{steps.assets.outputs.artifacts_path}}/"
142142

143143
- name: 'Push debug symbols to datadog'
144144
uses: ./.github/actions/publish-debug-symbols

0 commit comments

Comments
 (0)