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 a4bac31 commit dd74261Copy full SHA for dd74261
.github/workflows/base-ci-goreleaser.yaml
@@ -110,7 +110,11 @@ jobs:
110
111
- name: "[Nightly] Move downloaded artifact"
112
if: inputs.distribution == 'otelcol-contrib' && inputs.nightly == true && matrix.GOARCH == 'amd64' && matrix.GOOS == 'linux'
113
- run: mv otelcontribcol_linux_amd64 distributions/otelcol-contrib/artifacts/otelcol-contrib-linux_linux_amd64_v1/otelcol-contrib
+ env:
114
+ folder: distributions/otelcol-contrib/artifacts/otelcol-contrib-linux_linux_amd64_v1/
115
+ run: |
116
+ mkdir -p ${{ env.folder }}
117
+ mv otelcontribcol_linux_amd64 ${{ env.folder }}/otelcol-contrib
118
119
- name: Generate the sources for ${{ inputs.distribution }}
120
if: inputs.nightly != true
0 commit comments