Skip to content

Commit 01228a8

Browse files
authored
GA: fix step (#12)
- it looks like artifacts are uploaded as directories - so the scrip fails assuming it's a file -- https://github.com/gmarik/cdp-proxy/actions/runs/138055043
1 parent 19fcde8 commit 01228a8

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

.github/workflows/release.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -188,7 +188,7 @@ jobs:
188188
env:
189189
VERSION: ${{ steps.get_version.outputs.VERSION }}
190190
run: |
191-
mv ./cdp-proxy-${{ matrix.OS }}-${{ matrix.ARCH }}-${{github.sha}} cdp-proxy
191+
mv ./cdp-proxy-${{ matrix.OS }}-${{ matrix.ARCH }}-${{github.sha}}/* ./
192192
test -f ./cdp-proxy && chmod +x ./cdp-proxy #only on linux & darwin needed
193193
zip -j cdp-proxy-$VERSION-${{ matrix.OS }}-${{ matrix.ARCH }}.zip ./*
194194
# Download the previously uploaded artifact which contains the release URL

0 commit comments

Comments
 (0)