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 3cf2d44 commit 7daa9b5Copy full SHA for 7daa9b5
.github/workflows/MainDistributionPipeline.yml
@@ -45,5 +45,11 @@ jobs:
45
46
- name: List downloaded artifacts
47
run: |
48
- ls -la downloaded-artifacts/
49
- find downloaded-artifacts -type f | sort
+ mkdir to-upload; \
+ for l in `ls downloaded-artifacts`; do \
50
+ VER=`echo $l | cut -d '-' -f 2`; \
51
+ ARCH=`echo $l| cut -d '-' -f 4`; \
52
+ EXT=`ls downloaded-artifacts/$l | cut -b 7-`; \
53
+ mv downloaded-artifacts/$l/chsql.$EXT to-upload/chsql.$VER.$ARCH.$EXT; \
54
+ done; \
55
+ ls -la to-upload
0 commit comments